summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed/if_ed_isa.c
diff options
context:
space:
mode:
authormdodd <mdodd@FreeBSD.org>1999-10-15 03:12:48 +0000
committermdodd <mdodd@FreeBSD.org>1999-10-15 03:12:48 +0000
commitd21234b78cc7e611247dffae6bf6c15ac69b667a (patch)
treecff1fff01b962f6d9b67f718ee1c4d5a1d8f1ab7 /sys/dev/ed/if_ed_isa.c
parent1be659671f9c8884733a59d933c65a1e4ad4b29d (diff)
downloadFreeBSD-src-d21234b78cc7e611247dffae6bf6c15ac69b667a.zip
FreeBSD-src-d21234b78cc7e611247dffae6bf6c15ac69b667a.tar.gz
- Remove the ISA, PCI, and PCCARD specific code from if_ed.c; it
now lives in the respective bus front end files. - Add various function prototypes to if_edvar.h - Clean up some debugging code that snuck into if_ed_isa.c - Turn on the right bits in files.i386
Diffstat (limited to 'sys/dev/ed/if_ed_isa.c')
-rw-r--r--sys/dev/ed/if_ed_isa.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/ed/if_ed_isa.c b/sys/dev/ed/if_ed_isa.c
index c00dc20..a46d63e 100644
--- a/sys/dev/ed/if_ed_isa.c
+++ b/sys/dev/ed/if_ed_isa.c
@@ -75,13 +75,11 @@ ed_isa_probe(dev)
/* If the card had a PnP ID that didn't match any we know about */
if (error == ENXIO) {
- printf("*** unknown PnP ID\n");
goto end;
}
/* If we had some other problem. */
if (!(error == 0 || error == ENOENT)) {
- printf("*** Some other error (%d)\n", error);
goto end;
}
@@ -90,7 +88,6 @@ ed_isa_probe(dev)
error = ed_probe_WD80x3(dev);
if (error == 0)
goto end;
- printf("*** Failed ed_probe_WD80x3() (%d)\n", error);
ed_release_resources(dev);
error = ed_probe_3Com(dev);
@@ -102,6 +99,7 @@ ed_isa_probe(dev)
if (error == 0)
goto end;
ed_release_resources(dev);
+
error = ed_probe_HP_pclanp(dev);
if (error == 0)
goto end;
OpenPOWER on IntegriCloud