diff options
Diffstat (limited to 'drivers/net/ni65.c')
-rw-r--r-- | drivers/net/ni65.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/ni65.c b/drivers/net/ni65.c index 81a061785898..752c2e4d9cf4 100644 --- a/drivers/net/ni65.c +++ b/drivers/net/ni65.c | |||
@@ -252,7 +252,8 @@ static void ni65_xmit_intr(struct net_device *dev,int); | |||
252 | static int ni65_open(struct net_device *dev); | 252 | static int ni65_open(struct net_device *dev); |
253 | static int ni65_lance_reinit(struct net_device *dev); | 253 | static int ni65_lance_reinit(struct net_device *dev); |
254 | static void ni65_init_lance(struct priv *p,unsigned char*,int,int); | 254 | static void ni65_init_lance(struct priv *p,unsigned char*,int,int); |
255 | static int ni65_send_packet(struct sk_buff *skb, struct net_device *dev); | 255 | static netdev_tx_t ni65_send_packet(struct sk_buff *skb, |
256 | struct net_device *dev); | ||
256 | static void ni65_timeout(struct net_device *dev); | 257 | static void ni65_timeout(struct net_device *dev); |
257 | static int ni65_close(struct net_device *dev); | 258 | static int ni65_close(struct net_device *dev); |
258 | static int ni65_alloc_buffer(struct net_device *dev); | 259 | static int ni65_alloc_buffer(struct net_device *dev); |
@@ -1157,7 +1158,8 @@ static void ni65_timeout(struct net_device *dev) | |||
1157 | * Send a packet | 1158 | * Send a packet |
1158 | */ | 1159 | */ |
1159 | 1160 | ||
1160 | static int ni65_send_packet(struct sk_buff *skb, struct net_device *dev) | 1161 | static netdev_tx_t ni65_send_packet(struct sk_buff *skb, |
1162 | struct net_device *dev) | ||
1161 | { | 1163 | { |
1162 | struct priv *p = dev->ml_priv; | 1164 | struct priv *p = dev->ml_priv; |
1163 | 1165 | ||