diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-04-16 23:29:29 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-04-16 23:29:29 +0000 |
commit | a3c189b7f4937de67a11110b0ae604deae8ef527 (patch) | |
tree | 3b3edb87b023ec7462136336a081a6eaf2b035a5 | |
parent | d2d64d7edb332e3be9d898972dce282d64765e88 (diff) |
Missing init of a bus_space_tag
-rw-r--r-- | sys/dev/isa/pcmcia_pcic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/isa/pcmcia_pcic.c b/sys/dev/isa/pcmcia_pcic.c index ae2361468b7..22df9794bee 100644 --- a/sys/dev/isa/pcmcia_pcic.c +++ b/sys/dev/isa/pcmcia_pcic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcmcia_pcic.c,v 1.14 1997/03/01 22:42:58 niklas Exp $ */ +/* $OpenBSD: pcmcia_pcic.c,v 1.15 1997/04/16 23:29:28 niklas Exp $ */ /* * Copyright (c) 1995, 1996 John T. Kohl @@ -956,6 +956,7 @@ pcicmaster_probe(parent, self, aux) * Probe the slots for each of the possible child controllers, * and if any are there we return a positive indication. */ + pcic.sc_iot = iot; pcic.sc_ioh = ioh; for (i = 0; i < 2; i++) { bzero(pcic.slot, sizeof(pcic.slot)); |