diff options
author | 2006-06-27 16:46:24 +0000 | |
---|---|---|
committer | 2006-06-27 16:46:24 +0000 | |
commit | e820d86ada43e069c505a2071116b33dff68f8e3 (patch) | |
tree | 902275b681cce69a4a60d61360e5ab2f1bd5f33a | |
parent | Disable Jumbos on the 5714 family of chips for now. The bge driver assumes (diff) | |
download | wireguard-openbsd-e820d86ada43e069c505a2071116b33dff68f8e3.tar.xz wireguard-openbsd-e820d86ada43e069c505a2071116b33dff68f8e3.zip |
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 |