diff options
author | imp <imp@FreeBSD.org> | 2009-04-02 18:11:21 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2009-04-02 18:11:21 +0000 |
commit | 2742d967ddcd1d19d93622ff4af6f0f8808fe68e (patch) | |
tree | e9ca4f4a6793457a110605bce63f7b44098d5995 | |
parent | bc9d8e5730e5c6b896a9c8b8afd3f98d98d1e3c3 (diff) | |
download | FreeBSD-src-2742d967ddcd1d19d93622ff4af6f0f8808fe68e.zip FreeBSD-src-2742d967ddcd1d19d93622ff4af6f0f8808fe68e.tar.gz |
Kill debug that crept in.
-rw-r--r-- | sys/dev/ed/if_ed_pccard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ed/if_ed_pccard.c b/sys/dev/ed/if_ed_pccard.c index 78b34f9..4a8a7b6 100644 --- a/sys/dev/ed/if_ed_pccard.c +++ b/sys/dev/ed/if_ed_pccard.c @@ -1113,7 +1113,7 @@ ed_miibus_readreg(device_t dev, int phy, int reg) failed = (*sc->mii_readbits)(sc, ED_MII_ACK_BITS); val = (*sc->mii_readbits)(sc, ED_MII_DATA_BITS); (*sc->mii_writebits)(sc, ED_MII_IDLE, ED_MII_IDLE_BITS); - printf("Reading phy %d reg %#x returning %#x (valid %d)\n", phy, reg, val, !failed); +/* printf("Reading phy %d reg %#x returning %#x (valid %d)\n", phy, reg, val, !failed); */ return (failed ? 0 : val); } @@ -1122,7 +1122,7 @@ ed_miibus_writereg(device_t dev, int phy, int reg, int data) { struct ed_softc *sc; - printf("Writing phy %d reg %#x data %#x\n", phy, reg, data); +/* printf("Writing phy %d reg %#x data %#x\n", phy, reg, data); */ sc = device_get_softc(dev); /* See ed_miibus_readreg for details */ if (sc->chip_type == ED_CHIP_TYPE_AX88790) { |