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) {
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to