diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-06-27 16:46:25 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-06-27 16:46:25 +0000 |
commit | 9f20fad1da6878ec102e43c6cddc710d56eddc78 (patch) | |
tree | 6ca81bcfc54fc796a9fd4145f748396ffc3014bb | |
parent | e1002bb1c046aad9fb64783f2511875d32210987 (diff) |
don't set BGE_DEBUG by default, reduces the bloat a bit. noticed by deraadt.
no one noticed this has been here since rev 1.1.
-rw-r--r-- | sys/dev/pci/if_bge.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 53f109fb42e..e166600386a 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.163 2006/06/27 16:40:11 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.164 2006/06/27 16:46:24 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -181,7 +181,6 @@ void bge_miibus_statchg(struct device *); void bge_reset(struct bge_softc *); void bge_link_upd(struct bge_softc *); -#define BGE_DEBUG #ifdef BGE_DEBUG #define DPRINTF(x) if (bgedebug) printf x #define DPRINTFN(n,x) if (bgedebug >= (n)) printf x |