summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/NetVscApi.h
diff options
context:
space:
mode:
authorBill Pemberton2009-09-12 03:46:43 +0200
committerGreg Kroah-Hartman2009-09-15 21:02:03 +0200
commitd29274efb73735c6a94f20214b1e4ea994da8848 (patch)
tree2f49a4c99caded07d26b837b16680222570489ec /drivers/staging/hv/NetVscApi.h
parentStaging: hv: Add Haiyang's email to the TODO file (diff)
downloadkernel-qcow2-linux-d29274efb73735c6a94f20214b1e4ea994da8848.tar.gz
kernel-qcow2-linux-d29274efb73735c6a94f20214b1e4ea994da8848.tar.xz
kernel-qcow2-linux-d29274efb73735c6a94f20214b1e4ea994da8848.zip
Staging: hv: remove use of internal list routines in NetVsc
The hv driver has it's own linked list routines. This removes them from NetVsc and uses the kernels routines instead. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/NetVscApi.h')
-rw-r--r--drivers/staging/hv/NetVscApi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/NetVscApi.h b/drivers/staging/hv/NetVscApi.h
index 1cf12871dbc9..34e8fd79205c 100644
--- a/drivers/staging/hv/NetVscApi.h
+++ b/drivers/staging/hv/NetVscApi.h
@@ -37,7 +37,7 @@ struct hv_netvsc_packet;
/* Represent the xfer page packet which contains 1 or more netvsc packet */
struct xferpage_packet {
- LIST_ENTRY ListEntry;
+ struct list_head ListEntry;
/* # of netvsc packets this xfer packet contains */
u32 Count;
@@ -52,7 +52,7 @@ struct xferpage_packet {
*/
struct hv_netvsc_packet {
/* Bookkeeping stuff */
- LIST_ENTRY ListEntry;
+ struct list_head ListEntry;
struct hv_device *Device;
bool IsDataPacket;