diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-15 07:38:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-15 07:38:57 +0000 |
commit | d637b112da6f263025ed55589b62898f7e58aec0 (patch) | |
tree | 83e2233163af32a3780192e6b152af66226c246a /sys/dev/isa | |
parent | d3abcba59b122d2f03164f75f7b8fe4cecd0068b (diff) |
whoops, i made a fatal typo
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c index 7c87491a713..0257c40fc25 100644 --- a/sys/dev/isa/isa.c +++ b/sys/dev/isa/isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa.c,v 1.16 1996/08/15 05:30:45 deraadt Exp $ */ +/* $OpenBSD: isa.c,v 1.17 1996/08/15 07:38:56 deraadt Exp $ */ /* $NetBSD: isa.c,v 1.85 1996/05/14 00:31:04 thorpej Exp $ */ /*- @@ -138,7 +138,7 @@ isascan(parent, match) struct isa_attach_args ia; struct emap *io_map, *mem_map, *irq_map, *drq_map; - if (cf->cf_loc[6] == -1) /* pnp device, scanned later */ + if (cf->cf_loc[6] != -1) /* pnp device, scanned later */ return; io_map = find_emap("io"); |