diff options
author | 2006-05-30 21:44:03 +0000 | |
---|---|---|
committer | 2006-05-30 21:44:03 +0000 | |
commit | d4928443da02d074043d10a3b51ebeb448b91506 (patch) | |
tree | 5b71528f2817a3a2d3077aa38a44d3535dd3bc8c /sys/dev/cardbus/com_cardbus.c | |
parent | ugh forgot to change cvs_file_classify here too. (diff) | |
download | wireguard-openbsd-d4928443da02d074043d10a3b51ebeb448b91506.tar.xz wireguard-openbsd-d4928443da02d074043d10a3b51ebeb448b91506.zip |
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/cardbus/com_cardbus.c')
-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]); |