diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2008-11-25 21:12:49 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-25 21:12:49 -0500 |
commit | 8884c092e5e4f9a1b6e44f2e02a3eb5481af87ab (patch) | |
tree | 3afd7d5b3453aa34ce1f6bb010c3e843ca337b90 /drivers/net/8390.h | |
parent | b27aeadb5948d400df83db4d29590fb9862ba49d (diff) |
8390: add common net_device ops
Fix the defactoring of ei_XXX functions in 8390 and 8390p.
Remove the tx_timeout hack since no driver including the 3c503
overrides tx_timeout at this time, looks like a legacy thing.
Also, since several drivers all have same hooks, provide common
netdev_ops.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/8390.h')
-rw-r--r-- | drivers/net/8390.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/drivers/net/8390.h b/drivers/net/8390.h index 9470998bf634..3c61d6d2748a 100644 --- a/drivers/net/8390.h +++ b/drivers/net/8390.h | |||
@@ -33,16 +33,19 @@ extern void ei_poll(struct net_device *dev); | |||
33 | extern void eip_poll(struct net_device *dev); | 33 | extern void eip_poll(struct net_device *dev); |
34 | #endif | 34 | #endif |
35 | 35 | ||
36 | extern void ei_tx_timeout(struct net_device *dev); | ||
37 | extern int ei_start_xmit(struct sk_buff *skb, struct net_device *dev); | ||
38 | extern void ei_set_multicast_list(struct net_device *dev); | ||
39 | extern struct net_device_stats *ei_get_stats(struct net_device *dev); | ||
40 | 36 | ||
41 | /* Without I/O delay - non ISA or later chips */ | 37 | /* Without I/O delay - non ISA or later chips */ |
42 | extern void NS8390_init(struct net_device *dev, int startp); | 38 | extern void NS8390_init(struct net_device *dev, int startp); |
43 | extern int ei_open(struct net_device *dev); | 39 | extern int ei_open(struct net_device *dev); |
44 | extern int ei_close(struct net_device *dev); | 40 | extern int ei_close(struct net_device *dev); |
45 | extern irqreturn_t ei_interrupt(int irq, void *dev_id); | 41 | extern irqreturn_t ei_interrupt(int irq, void *dev_id); |
42 | extern void ei_tx_timeout(struct net_device *dev); | ||
43 | extern int ei_start_xmit(struct sk_buff *skb, struct net_device *dev); | ||
44 | extern void ei_set_multicast_list(struct net_device *dev); | ||
45 | extern struct net_device_stats *ei_get_stats(struct net_device *dev); | ||
46 | |||
47 | extern const struct net_device_ops ei_netdev_ops; | ||
48 | |||
46 | extern struct net_device *__alloc_ei_netdev(int size); | 49 | extern struct net_device *__alloc_ei_netdev(int size); |
47 | static inline struct net_device *alloc_ei_netdev(void) | 50 | static inline struct net_device *alloc_ei_netdev(void) |
48 | { | 51 | { |
@@ -54,6 +57,13 @@ extern void NS8390p_init(struct net_device *dev, int startp); | |||
54 | extern int eip_open(struct net_device *dev); | 57 | extern int eip_open(struct net_device *dev); |
55 | extern int eip_close(struct net_device *dev); | 58 | extern int eip_close(struct net_device *dev); |
56 | extern irqreturn_t eip_interrupt(int irq, void *dev_id); | 59 | extern irqreturn_t eip_interrupt(int irq, void *dev_id); |
60 | extern void eip_tx_timeout(struct net_device *dev); | ||
61 | extern int eip_start_xmit(struct sk_buff *skb, struct net_device *dev); | ||
62 | extern void eip_set_multicast_list(struct net_device *dev); | ||
63 | extern struct net_device_stats *eip_get_stats(struct net_device *dev); | ||
64 | |||
65 | extern const struct net_device_ops eip_netdev_ops; | ||
66 | |||
57 | extern struct net_device *__alloc_eip_netdev(int size); | 67 | extern struct net_device *__alloc_eip_netdev(int size); |
58 | static inline struct net_device *alloc_eip_netdev(void) | 68 | static inline struct net_device *alloc_eip_netdev(void) |
59 | { | 69 | { |