summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_vge.c
diff options
context:
space:
mode:
authorPeter Valchev <pvalchev@cvs.openbsd.org>2005-03-15 17:06:11 +0000
committerPeter Valchev <pvalchev@cvs.openbsd.org>2005-03-15 17:06:11 +0000
commita79a84fa06b160b0da314fd3bf046028bda63258 (patch)
tree532adc746d5cc981a621b51322c018248ac60eaa /sys/dev/pci/if_vge.c
parentacaf2501c6ff4746c7ce7dd33b8d33fee30b0fb7 (diff)
use IFQ_ rather than IF_ macro here too, maybe helps altq; ok henning
Diffstat (limited to 'sys/dev/pci/if_vge.c')
-rw-r--r--sys/dev/pci/if_vge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_vge.c b/sys/dev/pci/if_vge.c
index 7cbfa1151ce..a82f03030ea 100644
--- a/sys/dev/pci/if_vge.c
+++ b/sys/dev/pci/if_vge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vge.c,v 1.6 2005/01/15 05:24:11 brad Exp $ */
+/* $OpenBSD: if_vge.c,v 1.7 2005/03/15 17:06:10 pvalchev Exp $ */
/* $FreeBSD: if_vge.c,v 1.3 2004/09/11 22:13:25 wpaul Exp $ */
/*
* Copyright (c) 2004
@@ -1441,7 +1441,7 @@ vge_start(struct ifnet *ifp)
pidx = VGE_TX_DESC_CNT - 1;
while (sc->vge_ldata.vge_tx_mbuf[idx] == NULL) {
- IF_DEQUEUE(&ifp->if_snd, m_head);
+ IFQ_DEQUEUE(&ifp->if_snd, m_head);
if (m_head == NULL)
break;