diff options
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/lnc/if_lnc_isa.c | 3 | ||||
| -rw-r--r-- | sys/dev/lnc/if_lnc_pc98.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/lnc/if_lnc_isa.c b/sys/dev/lnc/if_lnc_isa.c index f3fb26189c44f..9cb84062cb5a6 100644 --- a/sys/dev/lnc/if_lnc_isa.c +++ b/sys/dev/lnc/if_lnc_isa.c @@ -49,6 +49,9 @@ int ne2100_probe __P((lnc_softc_t *, unsigned)); int bicc_probe __P((lnc_softc_t *, unsigned)); int depca_probe __P((lnc_softc_t *, unsigned)); +#ifdef PC98 +int cnet98s_probe __P((lnc_softc_t *, unsigned)); +#endif int lance_probe __P((lnc_softc_t *)); int pcnet_probe __P((lnc_softc_t *)); int lnc_probe __P((struct isa_device *)); diff --git a/sys/dev/lnc/if_lnc_pc98.c b/sys/dev/lnc/if_lnc_pc98.c index c476e9e5117d1..4484a14c5f9ef 100644 --- a/sys/dev/lnc/if_lnc_pc98.c +++ b/sys/dev/lnc/if_lnc_pc98.c @@ -53,7 +53,7 @@ #include <dev/lnc/if_lncreg.h> int pcnet_probe __P((lnc_softc_t *sc)); -static int cnet98s_probe __P((lnc_softc_t *sc, unsigned iobase)); +int cnet98s_probe __P((lnc_softc_t *sc, unsigned iobase)); /* C-NET(98)S port addresses */ #define CNET98S_RDP 0x400 /* Register Data Port */ @@ -84,7 +84,7 @@ static int cnet98s_probe __P((lnc_softc_t *sc, unsigned iobase)); #define LED_JABE 0x0002 /* Jabber */ #define LED_COLE 0x0001 /* Collision */ -static int +int cnet98s_probe(lnc_softc_t *sc, unsigned iobase) { int i; |
