aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2006-11-22 09:57:56 -0500
committerDavid Howells <dhowells@redhat.com>2006-11-22 09:57:56 -0500
commitc4028958b6ecad064b1a6303a6a5906d4fe48d73 (patch)
tree1c4c89652c62a75da09f9b9442012007e4ac6250 /net/core
parent65f27f38446e1976cc98fd3004b110fedcddd189 (diff)
WorkStruct: make allyesconfig
Fix up for make allyesconfig. Signed-Off-By: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/netpoll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/netpoll.c b/net/core/netpoll.c
index 6589adb14cbf..63f24c914ddb 100644
--- a/net/core/netpoll.c
+++ b/net/core/netpoll.c
@@ -56,7 +56,7 @@ static atomic_t trapped;
56static void zap_completion_queue(void); 56static void zap_completion_queue(void);
57static void arp_reply(struct sk_buff *skb); 57static void arp_reply(struct sk_buff *skb);
58 58
59static void queue_process(void *p) 59static void queue_process(struct work_struct *work)
60{ 60{
61 unsigned long flags; 61 unsigned long flags;
62 struct sk_buff *skb; 62 struct sk_buff *skb;
@@ -77,7 +77,7 @@ static void queue_process(void *p)
77 } 77 }
78} 78}
79 79
80static DECLARE_WORK(send_queue, queue_process, NULL); 80static DECLARE_WORK(send_queue, queue_process);
81 81
82void netpoll_queue(struct sk_buff *skb) 82void netpoll_queue(struct sk_buff *skb)
83{ 83{