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