svn commit: r190651 - head/sys/dev/ed
Warner Losh
imp at FreeBSD.org
Thu Apr 2 11:11:23 PDT 2009
Author: imp
Date: Thu Apr 2 18:11:21 2009
New Revision: 190651
URL: http://svn.freebsd.org/changeset/base/190651
Log:
Kill debug that crept in.
Modified:
head/sys/dev/ed/if_ed_pccard.c
Modified: head/sys/dev/ed/if_ed_pccard.c
==============================================================================
--- head/sys/dev/ed/if_ed_pccard.c Thu Apr 2 18:02:00 2009 (r190650)
+++ head/sys/dev/ed/if_ed_pccard.c Thu Apr 2 18:11:21 2009 (r190651)
@@ -1113,7 +1113,7 @@ ed_miibus_readreg(device_t dev, int phy,
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
{
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) {
More information about the svn-src-all
mailing list