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