diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-08-22 17:59:05 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-08-22 17:59:05 +0000 |
commit | 439d30c5f938bc7e70126fad63f0b346da3ed51d (patch) | |
tree | 2b3afb24b20de7b61a06d439bd70a77ff1481684 /sys | |
parent | d786700a33e236a35416e97d3e721190cfc12505 (diff) |
Powerpc supports isa not just power4e
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 1d75af323a2..32b6032c8f5 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci.c,v 1.12 1998/06/26 01:50:59 deraadt Exp $ */ +/* $OpenBSD: pci.c,v 1.13 1998/08/22 17:59:04 rahnds Exp $ */ /* $NetBSD: pci.c,v 1.31 1997/06/06 23:48:04 thorpej Exp $ */ /* @@ -281,7 +281,7 @@ pci_io_find(pc, pcitag, reg, iobasep, iosizep) if (iosizep != NULL) *iosizep = PCI_MAPREG_IO_SIZE(sizedata); -#ifdef power4e +#ifdef powerpc /* * Open Firmware (yuck) shuts down devices before entering a * program so we need to bring them back 'online' to respond @@ -353,7 +353,7 @@ pci_mem_find(pc, pcitag, reg, membasep, memsizep, cacheablep) if (cacheablep != NULL) *cacheablep = PCI_MAPREG_MEM_CACHEABLE(addrdata); -#ifdef power4e +#ifdef powerpc /* * Open Firmware (yuck) shuts down devices before entering a * program so we need to bring them back 'online' to respond |