diff options
author | Felix Kronlage <fkr@cvs.openbsd.org> | 2006-05-30 21:44:04 +0000 |
---|---|---|
committer | Felix Kronlage <fkr@cvs.openbsd.org> | 2006-05-30 21:44:04 +0000 |
commit | 3f4679c21941625455f365e35abbbe181eb6c2b1 (patch) | |
tree | cd109a790d0a20558dca7558dd8700fc96abfab7 /sys/dev | |
parent | ffb7f29d811ece57009fcd9dca651074dd1d44a5 (diff) |
add Oxford CB950 to the list of devices having more than one BAR, so
that it can be attached properly
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/cardbus/com_cardbus.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/cardbus/com_cardbus.c b/sys/dev/cardbus/com_cardbus.c index 9fa87d3fd14..bba7276331e 100644 --- a/sys/dev/cardbus/com_cardbus.c +++ b/sys/dev/cardbus/com_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_cardbus.c,v 1.21 2006/05/28 16:49:46 fkr Exp $ */ +/* $OpenBSD: com_cardbus.c,v 1.22 2006/05/30 21:44:03 fkr Exp $ */ /* $NetBSD: com_cardbus.c,v 1.4 2000/04/17 09:21:59 joda Exp $ */ /* @@ -136,7 +136,9 @@ static struct csdev { { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_SERIAL_GC, CARDBUS_BASE0_REG, CARDBUS_MAPREG_TYPE_IO }, { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM4322, - CARDBUS_BASE0_REG, CARDBUS_MAPREG_TYPE_IO, BUG_BROADCOM } + CARDBUS_BASE0_REG, CARDBUS_MAPREG_TYPE_IO, BUG_BROADCOM }, + { PCI_VENDOR_OXFORD2, PCI_PRODUCT_OXFORD2_OXCB950, + CARDBUS_BASE0_REG, CARDBUS_MAPREG_TYPE_IO } }; static const int ncsdevs = sizeof(csdevs) / sizeof(csdevs[0]); |