-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 103246 b: refs/heads/master c: 055e511 h: refs/heads/master v: v3
- Loading branch information
Alan Cox
authored and
Jeff Garzik
committed
Jul 4, 2008
1 parent
cba2e6a
commit e016465
Showing
8 changed files
with
117 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 141766cf9755e773b980238da52f5f5da5c69abe | ||
refs/heads/master: 055e5110ae0c0c1176a75b78d789294f2ff2f7af |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* 8390 core for ISA devices needing bus delays */ | ||
|
||
static const char version[] = | ||
"8390p.c:v1.10cvs 9/23/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n"; | ||
|
||
#define ei_inb(_p) inb(_p) | ||
#define ei_outb(_v,_p) outb(_v,_p) | ||
#define ei_inb_p(_p) inb_p(_p) | ||
#define ei_outb_p(_v,_p) outb_p(_v,_p) | ||
|
||
#include "lib8390.c" | ||
|
||
int eip_open(struct net_device *dev) | ||
{ | ||
return __ei_open(dev); | ||
} | ||
|
||
int eip_close(struct net_device *dev) | ||
{ | ||
return __ei_close(dev); | ||
} | ||
|
||
irqreturn_t eip_interrupt(int irq, void *dev_id) | ||
{ | ||
return __ei_interrupt(irq, dev_id); | ||
} | ||
|
||
#ifdef CONFIG_NET_POLL_CONTROLLER | ||
void eip_poll(struct net_device *dev) | ||
{ | ||
__ei_poll(dev); | ||
} | ||
#endif | ||
|
||
struct net_device *__alloc_eip_netdev(int size) | ||
{ | ||
return ____alloc_ei_netdev(size); | ||
} | ||
|
||
void NS8390p_init(struct net_device *dev, int startp) | ||
{ | ||
return __NS8390_init(dev, startp); | ||
} | ||
|
||
EXPORT_SYMBOL(eip_open); | ||
EXPORT_SYMBOL(eip_close); | ||
EXPORT_SYMBOL(eip_interrupt); | ||
#ifdef CONFIG_NET_POLL_CONTROLLER | ||
EXPORT_SYMBOL(eip_poll); | ||
#endif | ||
EXPORT_SYMBOL(NS8390p_init); | ||
EXPORT_SYMBOL(__alloc_eip_netdev); | ||
|
||
#if defined(MODULE) | ||
|
||
int init_module(void) | ||
{ | ||
return 0; | ||
} | ||
|
||
void cleanup_module(void) | ||
{ | ||
} | ||
|
||
#endif /* MODULE */ | ||
MODULE_LICENSE("GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters