summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-04-06 04:01:50 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-04-06 04:01:50 +0000
commite7866b2d1831c5025100b2dbac2c34de0130b32a (patch)
treeb19627ddf078965cdc3334ae317d5a094c214de4 /sys/dev
parentfd28c987629df9169c7f1f124a202214f358745e (diff)
hide debugging printfs
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/an.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ic/an.c b/sys/dev/ic/an.c
index 19be0d7f75b..688ab926605 100644
--- a/sys/dev/ic/an.c
+++ b/sys/dev/ic/an.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: an.c,v 1.1 2000/04/03 01:01:58 mickey Exp $ */
+/* $OpenBSD: an.c,v 1.2 2000/04/06 04:01:49 mickey Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -534,13 +534,13 @@ an_cmd(sc, cmd, val)
if ((s & AN_STAT_CMD_CODE) == (cmd & AN_STAT_CMD_CODE))
break;
}
-printf("<<resp %d, %x>>", i, s);
+/*printf("<<resp %d, %x>>", i, s);*/
#endif
/* Ack the command */
CSR_WRITE_2(sc, AN_EVENT_ACK, AN_EV_CMD);
if (CSR_READ_2(sc, AN_COMMAND) & AN_CMD_BUSY) {
-printf("busy");
+/*printf("busy");*/
CSR_WRITE_2(sc, AN_EVENT_ACK, AN_EV_CLR_STUCK_BUSY);
}
@@ -560,11 +560,11 @@ void an_reset(sc)
{
if (sc->an_gone)
return;
-printf("ena ");
+/*printf("ena ");*/
an_cmd(sc, AN_CMD_ENABLE, 0);
-printf("rst ");
+/* printf("rst ");*/
an_cmd(sc, AN_CMD_FW_RESTART, 0);
-printf("nop ");
+/*printf("nop ");*/
an_cmd(sc, AN_CMD_NOOP2, 0);
if (an_cmd(sc, AN_CMD_FORCE_SYNCLOSS, 0) == ETIMEDOUT)