mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
11795aa4f8
Fix all errors and warnings reported by checkpatch.pl Signed-off-by: Gustavo F. Padovan <gustavo@las.ic.unicamp.br> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
61 lines
1.0 KiB
C
61 lines
1.0 KiB
C
/* 8390 core for usual drivers */
|
|
|
|
static const char version[] =
|
|
"8390.c:v1.10cvs 9/23/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n";
|
|
|
|
#include "lib8390.c"
|
|
|
|
int ei_open(struct net_device *dev)
|
|
{
|
|
return __ei_open(dev);
|
|
}
|
|
EXPORT_SYMBOL(ei_open);
|
|
|
|
int ei_close(struct net_device *dev)
|
|
{
|
|
return __ei_close(dev);
|
|
}
|
|
EXPORT_SYMBOL(ei_close);
|
|
|
|
irqreturn_t ei_interrupt(int irq, void *dev_id)
|
|
{
|
|
return __ei_interrupt(irq, dev_id);
|
|
}
|
|
EXPORT_SYMBOL(ei_interrupt);
|
|
|
|
#ifdef CONFIG_NET_POLL_CONTROLLER
|
|
void ei_poll(struct net_device *dev)
|
|
{
|
|
__ei_poll(dev);
|
|
}
|
|
EXPORT_SYMBOL(ei_poll);
|
|
#endif
|
|
|
|
struct net_device *__alloc_ei_netdev(int size)
|
|
{
|
|
return ____alloc_ei_netdev(size);
|
|
}
|
|
EXPORT_SYMBOL(__alloc_ei_netdev);
|
|
|
|
void NS8390_init(struct net_device *dev, int startp)
|
|
{
|
|
__NS8390_init(dev, startp);
|
|
}
|
|
EXPORT_SYMBOL(NS8390_init);
|
|
|
|
#if defined(MODULE)
|
|
|
|
static int __init ns8390_module_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static void __exit ns8390_module_exit(void)
|
|
{
|
|
}
|
|
|
|
module_init(ns8390_module_init);
|
|
module_exit(ns8390_module_exit);
|
|
#endif /* MODULE */
|
|
MODULE_LICENSE("GPL");
|