diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2003-06-29 21:17:08 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2003-06-29 21:17:08 +0000 |
commit | 425637c038da0f50979d98d55a665184ebfbe42c (patch) | |
tree | 1a65faae97f6a1400e5ca59f6affbfe52dc2baf6 /sys | |
parent | 9f004e93344811070cfa71e1086683536e802892 (diff) |
Don't check for valid ipa_nio in attach since we don't use pnp here;
from Otto Moerbeek <otto@drijf.net>.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isa/lm_isa.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/dev/isa/lm_isa.c b/sys/dev/isa/lm_isa.c index 41383b31deb..4461bfa058d 100644 --- a/sys/dev/isa/lm_isa.c +++ b/sys/dev/isa/lm_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lm_isa.c,v 1.2 2003/05/28 19:15:37 grange Exp $ */ +/* $OpenBSD: lm_isa.c,v 1.3 2003/06/29 21:17:07 grange Exp $ */ /* $NetBSD: lm_isa.c,v 1.9 2002/11/15 14:55:44 ad Exp $ */ /*- @@ -74,12 +74,6 @@ lm_isa_match(struct device *parent, void *match, void *aux) int iobase; int rv; - /* Must supply an address */ - if (ia->ipa_nio < 1) { - DPRINTF(("%s: ipa_nio=%d\n", __func__, ia->ipa_nio)); - return (0); - } - #ifdef __NetBSD__ if (ISA_DIRECT_CONFIG(ia)) return (0); |