aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2000-05-19 16:31:45 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2000-05-19 16:31:45 +0000
commit67d17d72791a9965f19b99447e64ffd2249d57e7 (patch)
tree3efe2da6b443a34a4db8c804b80f14d75df1d911 /sys/dev
parentd475e057f4cf08a293f769e6a78d1bd294e056bd (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/lnc/if_lnc_isa.c3
-rw-r--r--sys/dev/lnc/if_lnc_pc98.c4
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;