diff options
author | Nathan Binkert <nate@cvs.openbsd.org> | 2001-12-14 00:45:00 +0000 |
---|---|---|
committer | Nathan Binkert <nate@cvs.openbsd.org> | 2001-12-14 00:45:00 +0000 |
commit | fd875e04265fc09aee5f1dd4263678202567f132 (patch) | |
tree | 1b59ca6b6ae772e4fe0ce0d66168573f956e6d09 /sys/arch/alpha/pci/pci_2100_a50.c | |
parent | 17d4cdf5fb28cbcf2a7f35a2029314c30369a46f (diff) |
Don't use a single static struct alpha_bus_space since there are machines
that can have more than one system bus attached to mainbus
Diffstat (limited to 'sys/arch/alpha/pci/pci_2100_a50.c')
-rw-r--r-- | sys/arch/alpha/pci/pci_2100_a50.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/pci_2100_a50.c b/sys/arch/alpha/pci/pci_2100_a50.c index 335c691bdca..78645296abe 100644 --- a/sys/arch/alpha/pci/pci_2100_a50.c +++ b/sys/arch/alpha/pci/pci_2100_a50.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_2100_a50.c,v 1.16 2001/11/06 19:53:13 miod Exp $ */ +/* $OpenBSD: pci_2100_a50.c,v 1.17 2001/12/14 00:44:59 nate Exp $ */ /* $NetBSD: pci_2100_a50.c,v 1.12 1996/11/13 21:13:29 cgd Exp $ */ /* @@ -66,7 +66,7 @@ void pci_2100_a50_pickintr(acp) struct apecs_config *acp; { - bus_space_tag_t iot = acp->ac_iot; + bus_space_tag_t iot = &acp->ac_iot; pci_chipset_tag_t pc = &acp->ac_pc; pcireg_t sioclass; int sioII; |