diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-08-10 16:24:41 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-10 16:24:41 -0700 |
commit | 969a6e521730153380ad7781095f503c040b684c (patch) | |
tree | b1173bcdf43efb2f09111860690ca74071bb8743 /include/linux/netpoll.h | |
parent | 1c114f42a597346de793a1d166478266a7ec3b61 (diff) |
net: make netpoll_rx return bool for !CONFIG_NETPOLL
"netpoll: Use 'bool' for netpoll_rx() return type." missed the case when
CONFIG_NETPOLL is disabled.
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netpoll.h')
-rw-r--r-- | include/linux/netpoll.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netpoll.h b/include/linux/netpoll.h index 413742c92d14..791d5109f34c 100644 --- a/include/linux/netpoll.h +++ b/include/linux/netpoll.h @@ -122,7 +122,7 @@ static inline int netpoll_tx_running(struct net_device *dev) } #else -static inline int netpoll_rx(struct sk_buff *skb) +static inline bool netpoll_rx(struct sk_buff *skb) { return 0; } |