diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-03-23 03:25:47 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-03-23 03:25:47 +0000 |
commit | d6e2c387b3da57ec9c8282c0a88d3fddb613e709 (patch) | |
tree | ca4080ab199edc037a61f41b1ee1c0ac6439204f /sys | |
parent | 32f9d0e4b319a506ee0c1481680a02ca0b9f3c04 (diff) |
Add TI 1510 to recognized list of chips to configure. ok deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/macppc/macppc/rbus_machdep.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/rbus_machdep.c b/sys/arch/macppc/macppc/rbus_machdep.c index 4a3576e1b30..45b7a34889b 100644 --- a/sys/arch/macppc/macppc/rbus_machdep.c +++ b/sys/arch/macppc/macppc/rbus_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rbus_machdep.c,v 1.5 2003/10/25 12:35:32 drahn Exp $ */ +/* $OpenBSD: rbus_machdep.c,v 1.6 2004/03/23 03:25:46 drahn Exp $ */ /* $NetBSD: rbus_machdep.c,v 1.2 1999/10/15 06:43:06 haya Exp $ */ /* @@ -141,7 +141,8 @@ macppc_cardbus_init(pci_chipset_tag_t pc, pcitag_t tag) } if (PCI_VENDOR(x) == PCI_VENDOR_TI && - PCI_PRODUCT(x) == PCI_PRODUCT_TI_PCI1410) { + (PCI_PRODUCT(x) == PCI_PRODUCT_TI_PCI1410 || + PCI_PRODUCT(x) == PCI_PRODUCT_TI_PCI1510)) { /* dont mess with the bus numbers or latency timer */ /* Route INTA to MFUNC0 */ |