diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-11 00:23:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-11 00:23:22 +0000 |
commit | 273060570429ee6de893a442af2594c6e282f481 (patch) | |
tree | bdc55592ee111d212403fdffb35cf445893cfc5d /sys/dev/ic/gem.c | |
parent | e3db2a060241dbba89fd49db222935c131ec7af0 (diff) |
be silent
Diffstat (limited to 'sys/dev/ic/gem.c')
-rw-r--r-- | sys/dev/ic/gem.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/ic/gem.c b/sys/dev/ic/gem.c index cb1b0191035..c9edad14efc 100644 --- a/sys/dev/ic/gem.c +++ b/sys/dev/ic/gem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gem.c,v 1.62 2006/11/10 23:58:47 kettenis Exp $ */ +/* $OpenBSD: gem.c,v 1.63 2006/11/11 00:23:21 deraadt Exp $ */ /* $NetBSD: gem.c,v 1.1 2001/09/16 00:11:43 eeh Exp $ */ /* @@ -1074,7 +1074,9 @@ gem_eint(sc, status) u_int status; { if ((status & GEM_INTR_MIF) != 0) { +#ifdef GEM_DEBUG printf("%s: link status changed\n", sc->sc_dev.dv_xname); +#endif return (1); } @@ -1092,9 +1094,10 @@ gem_pint(sc) status = bus_space_read_4(t, seb, GEM_MII_INTERRUP_STATUS); status |= bus_space_read_4(t, seb, GEM_MII_INTERRUP_STATUS); +#ifdef GEM_DEBUG if (status) printf("%s: link status changed\n", sc->sc_dev.dv_xname); - +#endif return (1); } |