diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-11-08 23:49:01 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-11-08 23:49:01 +0000 |
commit | 0b93a282a4901915cf5cbd81741e1ef7eb6d6726 (patch) | |
tree | 7f00c3bc473218e23d1dd8d8f325d61c28130679 /sys/arch/powerpc/pci/pcibrvar.h | |
parent | f852bd66af9ffe7e798bb823f628e1e9c20cc084 (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.h | 10 |
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; + }; |