summaryrefslogtreecommitdiffstats
path: root/sys/dev/hea/eni_transmit.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/hea/eni_transmit.c')
-rw-r--r--sys/dev/hea/eni_transmit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/hea/eni_transmit.c b/sys/dev/hea/eni_transmit.c
index 2f6f945..2fd5b24 100644
--- a/sys/dev/hea/eni_transmit.c
+++ b/sys/dev/hea/eni_transmit.c
@@ -271,7 +271,7 @@ eni_xmit_drain ( eup )
/*
* Pull the top element (PDU) off
*/
- IF_DEQUEUE ( &eup->eu_txqueue, m );
+ _IF_DEQUEUE ( &eup->eu_txqueue, m );
/*
* As long as there are valid elements
*/
@@ -317,7 +317,7 @@ eni_xmit_drain ( eup )
* Haven't finished this PDU yet - replace
* it as the head of list.
*/
- IF_PREPEND ( &eup->eu_txqueue, m );
+ _IF_PREPEND ( &eup->eu_txqueue, m );
/*
* If this one isn't done, none of the others
* are either.
@@ -331,7 +331,7 @@ eni_xmit_drain ( eup )
* Haven't finished this PDU yet - replace
* it as the head of list.
*/
- IF_PREPEND ( &eup->eu_txqueue, m );
+ _IF_PREPEND ( &eup->eu_txqueue, m );
/*
* If this one isn't done, none of the others
* are either.
@@ -388,7 +388,7 @@ eni_xmit_drain ( eup )
/*
* Look for next completed transmit PDU
*/
- IF_DEQUEUE ( &eup->eu_txqueue, m );
+ _IF_DEQUEUE ( &eup->eu_txqueue, m );
}
/*
* We've drained the queue...
@@ -823,7 +823,7 @@ retry:
* Place buffers onto transmit queue for draining
*/
s2 = splimp();
- IF_ENQUEUE ( &eup->eu_txqueue, m );
+ _IF_ENQUEUE ( &eup->eu_txqueue, m );
(void) splx(s2);
/*
OpenPOWER on IntegriCloud