xref: /minix/minix/drivers/net/dp8390/local.h (revision 83133719)
1 /*
2 local.h
3 */
4 
5 #define ENABLE_WDETH 1
6 #define ENABLE_NE2000 1
7 #define ENABLE_3C503 1
8 #define ENABLE_PCI 1
9 
10 struct dpeth;
11 
12 /* 3c503.c */
13 int el2_probe(struct dpeth* dep);
14 
15 /* dp8390.c */
16 u8_t inb(port_t port);
17 u16_t inw(port_t port);
18 void outb(port_t port, u8_t v);
19 void outw(port_t port, u16_t v);
20 
21 /* ne2000.c */
22 int ne_probe(struct dpeth *dep);
23 void ne_init(struct dpeth *dep);
24 
25 /* rtl8029.c */
26 int rtl_probe(struct dpeth *dep, int skip);
27 
28 /* wdeth.c */
29 int wdeth_probe(struct dpeth* dep);
30 
31