diff options
author | imp <imp@FreeBSD.org> | 2000-07-10 16:46:21 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2000-07-10 16:46:21 +0000 |
commit | 3dbed00e16fedae108e761b9a44758af1ebf9c12 (patch) | |
tree | 8b2e09d1c1a29da2b478ff3396eb857b836a4f3d /sys/dev/xe/if_xe.c | |
parent | ae7af5f4bd1ef5d4c150feeb67d37489eb00d3a0 (diff) | |
download | FreeBSD-src-3dbed00e16fedae108e761b9a44758af1ebf9c12.zip FreeBSD-src-3dbed00e16fedae108e761b9a44758af1ebf9c12.tar.gz |
Remove the XE_DEBUG define. It shouldn't be defined now that things
are working. Add a small blurb about XE_DEBUG as it might be useful
to some people troubelshooting problems in the future.
Submitted by: "Kevin Oberman" <oberman@es.net>
Diffstat (limited to 'sys/dev/xe/if_xe.c')
-rw-r--r-- | sys/dev/xe/if_xe.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/xe/if_xe.c b/sys/dev/xe/if_xe.c index 63cbb76..6699026 100644 --- a/sys/dev/xe/if_xe.c +++ b/sys/dev/xe/if_xe.c @@ -202,9 +202,10 @@ static u_int16_t xe_phy_readreg (struct xe_softc *scp, u_int16_t reg); static void xe_phy_writereg (struct xe_softc *scp, u_int16_t reg, u_int16_t data); /* - * Debug functions + * Debug functions -- uncomment for VERY verbose dignostic information. + * Set to 1 for less verbose information */ -#define XE_DEBUG 2 +/* #define XE_DEBUG 2 */ #ifdef XE_DEBUG #define XE_REG_DUMP(scp) xe_reg_dump((scp)) #define XE_MII_DUMP(scp) xe_mii_dump((scp)) |