summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed
diff options
context:
space:
mode:
authormdodd <mdodd@FreeBSD.org>1999-10-18 04:27:33 +0000
committermdodd <mdodd@FreeBSD.org>1999-10-18 04:27:33 +0000
commit00deed7effdb1c70ecfd6dd0e4941d2e7041141f (patch)
tree90d1494a2dc2d52fdfa78ac1de84a579bca1a805 /sys/dev/ed
parent9c379f2ef7ad8f450366c4a33a9a081f1cbf3680 (diff)
downloadFreeBSD-src-00deed7effdb1c70ecfd6dd0e4941d2e7041141f.zip
FreeBSD-src-00deed7effdb1c70ecfd6dd0e4941d2e7041141f.tar.gz
This fixes the problem with SMC NE2000 cards hanging the box on
bootup. Somehow my backout of an abortaive attempt at shared memory autoconfiguration included this line: sc->mem_shared = 1; Which is fairly important as it turns out. Since I performed my pre-commit testing on a different box with a generic NE2000 I didn't catch this. Pointy hat.
Diffstat (limited to 'sys/dev/ed')
-rw-r--r--sys/dev/ed/if_ed.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index 16c3036..744ff73 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -474,6 +474,7 @@ ed_probe_WD80x3(dev)
return (ENXIO);
}
sc->isa16bit = isa16bit;
+ sc->mem_shared = 1;
error = ed_alloc_memory(dev, 0, memsize);
if (error) {
OpenPOWER on IntegriCloud