projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c78ab7
)
pch_can: Replace netif_rx to netif_receive_skb
author
Tomoya
<
[email protected]
>
Sun, 12 Dec 2010 20:24:26 +0000
(20:24 +0000)
committer
David S. Miller
<
[email protected]
>
Mon, 13 Dec 2010 20:24:28 +0000
(12:24 -0800)
Since this driver is implemented as NAPI,
netif_receive_skb must be used not netif_rx.
Signed-off-by: Tomoya MORINAGA <
[email protected]
>
Acked-by: Marc Kleine-Budde <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/can/pch_can.c
patch
|
blob
|
history
diff --git
a/drivers/net/can/pch_can.c
b/drivers/net/can/pch_can.c
index 4697b1cf94e83669ffa68ce47ef9eb3bc4082c33..8d45fdd0180db08978d89d44ac754f09059aeab2 100644
(file)
--- a/
drivers/net/can/pch_can.c
+++ b/
drivers/net/can/pch_can.c
@@
-572,7
+572,7
@@
static void pch_can_error(struct net_device *ndev, u32 status)
cf->data[7] = (errc & PCH_REC) >> 8;
priv->can.state = state;
- netif_r
x
(skb);
+ netif_r
eceive_skb
(skb);
stats->rx_packets++;
stats->rx_bytes += cf->can_dlc;