diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-02 04:03:40 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-02 04:03:40 +0000 |
commit | 2d6c4bbf119ecf4fe2007f3a2634ae931cd242e1 (patch) | |
tree | 29811a2bf08aadb02be5fba105c12f6e0e5b8473 /sys/dev/pci/if_rl_pci.c | |
parent | fb2ed5d50c172e0e939132ae06da51b7bd2d339e (diff) |
Add more CardBus ids to PCI attachments to cope with
things like the crazy ExpressCard->CardBus adapters which
make CardBus devices show as PCI devices.
Diffstat (limited to 'sys/dev/pci/if_rl_pci.c')
-rw-r--r-- | sys/dev/pci/if_rl_pci.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/dev/pci/if_rl_pci.c b/sys/dev/pci/if_rl_pci.c index 937470cd419..c78cd121767 100644 --- a/sys/dev/pci/if_rl_pci.c +++ b/sys/dev/pci/if_rl_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rl_pci.c,v 1.15 2008/08/13 03:47:16 brad Exp $ */ +/* $OpenBSD: if_rl_pci.c,v 1.16 2009/06/02 04:03:39 jsg Exp $ */ /* * Copyright (c) 1997, 1998 @@ -96,7 +96,14 @@ const struct pci_matchid rl_pci_devices[] = { { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_530TXPLUS }, { PCI_VENDOR_NORTEL, PCI_PRODUCT_NORTEL_BS21 }, { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129 }, - { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8139D } + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8139D }, + { PCI_VENDOR_ABOCOM, PCI_PRODUCT_ABOCOM_FE2000VX }, + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8138 }, + { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_CB_TXD }, + { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_2CB_TXD }, + { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DFE690TXD }, + { PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3603_TX }, + { PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3800_TX } }; int |