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_eb164.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_eb164.c')
-rw-r--r-- | sys/arch/alpha/pci/pci_eb164.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/pci_eb164.c b/sys/arch/alpha/pci/pci_eb164.c index 2dc12c04b1c..f77641ac0ab 100644 --- a/sys/arch/alpha/pci/pci_eb164.c +++ b/sys/arch/alpha/pci/pci_eb164.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_eb164.c,v 1.11 2001/11/06 19:53:13 miod Exp $ */ +/* $OpenBSD: pci_eb164.c,v 1.12 2001/12/14 00:44:59 nate Exp $ */ /* $NetBSD: pci_eb164.c,v 1.27 2000/06/06 00:50:15 thorpej Exp $ */ /*- @@ -124,7 +124,7 @@ void pci_eb164_pickintr(ccp) struct cia_config *ccp; { - bus_space_tag_t iot = ccp->cc_iot; + bus_space_tag_t iot = &ccp->cc_iot; pci_chipset_tag_t pc = &ccp->cc_pc; int i; |