summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-11-25 02:05:25 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-11-25 02:05:25 +0000
commitaab8ff26279c0d299cdb87fcc48236135680332b (patch)
treeb6275a1b50c5632089184d1e297bc34275fc37d0 /sys/dev
parent7c65a48ed03a99ddc6d7df750f28a241ca9bd679 (diff)
Use BGE_IS_JUMBO_CAPABLE in one more spot.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_bge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c
index 7be69e2f86e..2b9a04e7cd3 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.99 2005/11/25 01:21:44 brad Exp $ */
+/* $OpenBSD: if_bge.c,v 1.100 2005/11/25 02:05:24 brad Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
@@ -3306,7 +3306,7 @@ bge_stop(struct bge_softc *sc)
bge_free_rx_ring_std(sc);
/* Free jumbo RX list. */
- if ((sc->bge_quirks & BGE_QUIRK_5705_CORE) == 0)
+ if (BGE_IS_JUMBO_CAPABLE(sc))
bge_free_rx_ring_jumbo(sc);
/* Free TX buffers. */