diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_bge.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 6e189a02efe..e0bacd50f15 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.29 2004/08/17 18:23:49 deraadt Exp $ */ +/* $OpenBSD: if_bge.c,v 1.30 2004/08/19 17:00:03 mcbride Exp $ */ /* * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2001 @@ -645,7 +645,8 @@ bge_jalloc(sc) entry = LIST_FIRST(&sc->bge_jfree_listhead); if (entry == NULL) { - printf("%s: no free jumbo buffers\n", sc->bge_dev.dv_xname); + DPRINTFN(1,("%s: no free jumbo buffers\n", + sc->bge_dev.dv_xname)); return(NULL); } |