source: trunk/minix/drivers/dp8390/local.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 656 bytes
Line 
1/*
2local.h
3*/
4
5#define ENABLE_WDETH 1
6#define ENABLE_NE2000 1
7#define ENABLE_3C503 1
8#define ENABLE_PCI 1
9
10struct dpeth;
11
12/* 3c503.c */
13_PROTOTYPE( int el2_probe, (struct dpeth* dep) );
14
15/* dp8390.c */
16_PROTOTYPE( u8_t inb, (port_t port) );
17_PROTOTYPE( u16_t inw, (port_t port) );
18_PROTOTYPE( void outb, (port_t port, u8_t v) );
19_PROTOTYPE( void outw, (port_t port, u16_t v) );
20
21/* ne2000.c */
22_PROTOTYPE( int ne_probe, (struct dpeth *dep) );
23_PROTOTYPE( void ne_init, (struct dpeth *dep) );
24
25/* rtl8029.c */
26_PROTOTYPE( int rtl_probe, (struct dpeth *dep) );
27
28/* wdeth.c */
29_PROTOTYPE( int wdeth_probe, (struct dpeth* dep) );
30
Note: See TracBrowser for help on using the repository browser.