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_kn20aa.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_kn20aa.c')
-rw-r--r-- | sys/arch/alpha/pci/pci_kn20aa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/pci_kn20aa.c b/sys/arch/alpha/pci/pci_kn20aa.c index 3601bb381fe..2df7083d2b0 100644 --- a/sys/arch/alpha/pci/pci_kn20aa.c +++ b/sys/arch/alpha/pci/pci_kn20aa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_kn20aa.c,v 1.15 2001/11/06 19:53:13 miod Exp $ */ +/* $OpenBSD: pci_kn20aa.c,v 1.16 2001/12/14 00:44:59 nate Exp $ */ /* $NetBSD: pci_kn20aa.c,v 1.21 1996/11/17 02:05:27 cgd Exp $ */ /* @@ -84,7 +84,7 @@ pci_kn20aa_pickintr(ccp) struct cia_config *ccp; { int i; - bus_space_tag_t iot = ccp->cc_iot; + bus_space_tag_t iot = &ccp->cc_iot; pci_chipset_tag_t pc = &ccp->cc_pc; pc->pc_intr_v = ccp; |