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_up1000.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_up1000.c')
-rw-r--r-- | sys/arch/alpha/pci/pci_up1000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/pci_up1000.c b/sys/arch/alpha/pci/pci_up1000.c index 153281ebd2a..d615581988d 100644 --- a/sys/arch/alpha/pci/pci_up1000.c +++ b/sys/arch/alpha/pci/pci_up1000.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_up1000.c,v 1.6 2001/11/06 19:53:13 miod Exp $ */ +/* $OpenBSD: pci_up1000.c,v 1.7 2001/12/14 00:44:59 nate Exp $ */ /* $NetBSD: pci_up1000.c,v 1.6 2000/12/28 22:59:07 sommerfeld Exp $ */ /*- @@ -80,7 +80,7 @@ void api_up1000_pciide_compat_intr_disestablish(void *, void *); void pci_up1000_pickintr(struct irongate_config *icp) { - bus_space_tag_t iot = icp->ic_iot; + bus_space_tag_t iot = &icp->ic_iot; pci_chipset_tag_t pc = &icp->ic_pc; pc->pc_intr_v = icp; |