diff options
author | Oliver Hartkopp <oliver@hartkopp.net> | 2008-12-16 04:42:50 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-16 04:42:50 -0500 |
commit | 5ad258c0a85a7cc03c46874e8a26c7e9b4dfb90d (patch) | |
tree | 568e0fd08df0ebc359e99c7a380c738ae0a5779e /drivers/net/can/vcan.c | |
parent | ffcebb163c6ddba11abd2e8aabc7a8a88982e4f4 (diff) |
vcan: convert to net_device_ops
Signed-off-by: Oliver Hartkopp <oliver@hartkopp.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can/vcan.c')
-rw-r--r-- | drivers/net/can/vcan.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/net/can/vcan.c b/drivers/net/can/vcan.c index 103f0f1df280..f127ec983d03 100644 --- a/drivers/net/can/vcan.c +++ b/drivers/net/can/vcan.c | |||
@@ -128,6 +128,10 @@ static int vcan_tx(struct sk_buff *skb, struct net_device *dev) | |||
128 | return NETDEV_TX_OK; | 128 | return NETDEV_TX_OK; |
129 | } | 129 | } |
130 | 130 | ||
131 | static const struct net_device_ops vcan_netdev_ops = { | ||
132 | .ndo_start_xmit = vcan_tx, | ||
133 | }; | ||
134 | |||
131 | static void vcan_setup(struct net_device *dev) | 135 | static void vcan_setup(struct net_device *dev) |
132 | { | 136 | { |
133 | dev->type = ARPHRD_CAN; | 137 | dev->type = ARPHRD_CAN; |
@@ -141,7 +145,7 @@ static void vcan_setup(struct net_device *dev) | |||
141 | if (echo) | 145 | if (echo) |
142 | dev->flags |= IFF_ECHO; | 146 | dev->flags |= IFF_ECHO; |
143 | 147 | ||
144 | dev->hard_start_xmit = vcan_tx; | 148 | dev->netdev_ops = &vcan_netdev_ops; |
145 | dev->destructor = free_netdev; | 149 | dev->destructor = free_netdev; |
146 | } | 150 | } |
147 | 151 | ||