summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc/pci/pcibrvar.h
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1999-11-08 23:49:01 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1999-11-08 23:49:01 +0000
commit0b93a282a4901915cf5cbd81741e1ef7eb6d6726 (patch)
tree7f00c3bc473218e23d1dd8d8f325d61c28130679 /sys/arch/powerpc/pci/pcibrvar.h
parentf852bd66af9ffe7e798bb823f628e1e9c20cc084 (diff)
Changes for imac support. support for VI computers and MCG Powerstack
will need to be merged back in. Both are currently untested. mac interrupt support is currently a big hack and needs to be redesigned as part of the system, several of the mac drivers need busified also.
Diffstat (limited to 'sys/arch/powerpc/pci/pcibrvar.h')
-rw-r--r--sys/arch/powerpc/pci/pcibrvar.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/powerpc/pci/pcibrvar.h b/sys/arch/powerpc/pci/pcibrvar.h
index a5533a98de6..57f54fbd6a4 100644
--- a/sys/arch/powerpc/pci/pcibrvar.h
+++ b/sys/arch/powerpc/pci/pcibrvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcibrvar.h,v 1.2 1998/08/06 15:04:03 pefo Exp $ */
+/* $OpenBSD: pcibrvar.h,v 1.3 1999/11/08 23:49:00 rahnds Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -35,15 +35,17 @@
struct pcibr_config {
bus_space_tag_t lc_iot;
bus_space_tag_t lc_memt;
- struct p4e_pci_chipset lc_pc;
+ struct ppc_pci_chipset lc_pc;
int pci_init_done;
};
struct pcibr_softc {
struct device sc_dev;
struct pcibr_config *sc_pcibr;
- struct p4e_bus_space sc_membus_space;
- struct p4e_bus_space sc_iobus_space;
+ struct ppc_bus_space sc_membus_space;
+ struct ppc_bus_space sc_iobus_space;
+ bus_space_handle_t ioh;
+
};