summaryrefslogtreecommitdiffstats
path: root/src/net/netdevice.c
diff options
context:
space:
mode:
authorMichael Brown2011-10-14 14:35:05 +0200
committerMichael Brown2011-10-14 15:33:31 +0200
commit38b205d0a4d7c29f7ba32f3f96e4ded9790d0af2 (patch)
tree07b6755344d0ebd251d299f81e65f8ef0f5f2e6d /src/net/netdevice.c
parent[dhcp] Use a random DHCP transaction identifier (xid) (diff)
downloadipxe-38b205d0a4d7c29f7ba32f3f96e4ded9790d0af2.tar.gz
ipxe-38b205d0a4d7c29f7ba32f3f96e4ded9790d0af2.tar.xz
ipxe-38b205d0a4d7c29f7ba32f3f96e4ded9790d0af2.zip
[list] Tidy up naming convention for list_contains() and friends
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/netdevice.c')
-rw-r--r--src/net/netdevice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/netdevice.c b/src/net/netdevice.c
index f5ec4191..d1ae8af3 100644
--- a/src/net/netdevice.c
+++ b/src/net/netdevice.c
@@ -233,7 +233,7 @@ void netdev_tx_complete_err ( struct net_device *netdev,
struct io_buffer *iobuf, int rc ) {
/* Catch data corruption as early as possible */
- list_check_contains ( iobuf, &netdev->tx_queue, list );
+ list_check_contains_entry ( iobuf, &netdev->tx_queue, list );
/* Dequeue and free I/O buffer */
list_del ( &iobuf->list );