diff options
Diffstat (limited to 'drivers/net/8390.c')
-rw-r--r-- | drivers/net/8390.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/drivers/net/8390.c b/drivers/net/8390.c index dc5d2584bd0c..f72a2e87d569 100644 --- a/drivers/net/8390.c +++ b/drivers/net/8390.c | |||
@@ -9,42 +9,39 @@ int ei_open(struct net_device *dev) | |||
9 | { | 9 | { |
10 | return __ei_open(dev); | 10 | return __ei_open(dev); |
11 | } | 11 | } |
12 | EXPORT_SYMBOL(ei_open); | ||
12 | 13 | ||
13 | int ei_close(struct net_device *dev) | 14 | int ei_close(struct net_device *dev) |
14 | { | 15 | { |
15 | return __ei_close(dev); | 16 | return __ei_close(dev); |
16 | } | 17 | } |
18 | EXPORT_SYMBOL(ei_close); | ||
17 | 19 | ||
18 | irqreturn_t ei_interrupt(int irq, void *dev_id) | 20 | irqreturn_t ei_interrupt(int irq, void *dev_id) |
19 | { | 21 | { |
20 | return __ei_interrupt(irq, dev_id); | 22 | return __ei_interrupt(irq, dev_id); |
21 | } | 23 | } |
24 | EXPORT_SYMBOL(ei_interrupt); | ||
22 | 25 | ||
23 | #ifdef CONFIG_NET_POLL_CONTROLLER | 26 | #ifdef CONFIG_NET_POLL_CONTROLLER |
24 | void ei_poll(struct net_device *dev) | 27 | void ei_poll(struct net_device *dev) |
25 | { | 28 | { |
26 | __ei_poll(dev); | 29 | __ei_poll(dev); |
27 | } | 30 | } |
31 | EXPORT_SYMBOL(ei_poll); | ||
28 | #endif | 32 | #endif |
29 | 33 | ||
30 | struct net_device *__alloc_ei_netdev(int size) | 34 | struct net_device *__alloc_ei_netdev(int size) |
31 | { | 35 | { |
32 | return ____alloc_ei_netdev(size); | 36 | return ____alloc_ei_netdev(size); |
33 | } | 37 | } |
38 | EXPORT_SYMBOL(__alloc_ei_netdev); | ||
34 | 39 | ||
35 | void NS8390_init(struct net_device *dev, int startp) | 40 | void NS8390_init(struct net_device *dev, int startp) |
36 | { | 41 | { |
37 | __NS8390_init(dev, startp); | 42 | __NS8390_init(dev, startp); |
38 | } | 43 | } |
39 | |||
40 | EXPORT_SYMBOL(ei_open); | ||
41 | EXPORT_SYMBOL(ei_close); | ||
42 | EXPORT_SYMBOL(ei_interrupt); | ||
43 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
44 | EXPORT_SYMBOL(ei_poll); | ||
45 | #endif | ||
46 | EXPORT_SYMBOL(NS8390_init); | 44 | EXPORT_SYMBOL(NS8390_init); |
47 | EXPORT_SYMBOL(__alloc_ei_netdev); | ||
48 | 45 | ||
49 | #if defined(MODULE) | 46 | #if defined(MODULE) |
50 | 47 | ||