diff options
-rw-r--r-- | sys/dev/cardbus/if_malo_cardbus.c | 3 | ||||
-rw-r--r-- | sys/dev/pci/if_malo_pci.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/cardbus/if_malo_cardbus.c b/sys/dev/cardbus/if_malo_cardbus.c index 78852fb0e45..0e2171da0b9 100644 --- a/sys/dev/cardbus/if_malo_cardbus.c +++ b/sys/dev/cardbus/if_malo_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_malo_cardbus.c,v 1.4 2006/10/29 11:41:34 mglocker Exp $ */ +/* $OpenBSD: if_malo_cardbus.c,v 1.5 2006/11/29 10:37:11 mglocker Exp $ */ /* * Copyright (c) 2006 Claudio Jeker <claudio@openbsd.org> @@ -70,6 +70,7 @@ struct cfattach malo_cardbus_ca = { }; static const struct cardbus_matchid malo_cardbus_devices[] = { + { PCI_VENDOR_MARVELL, PCI_PRODUCT_MARVELL_88W8310 }, { PCI_VENDOR_MARVELL, PCI_PRODUCT_MARVELL_88W8335_1 }, { PCI_VENDOR_MARVELL, PCI_PRODUCT_MARVELL_88W8335_2 } }; diff --git a/sys/dev/pci/if_malo_pci.c b/sys/dev/pci/if_malo_pci.c index 7b3f8436af8..bf5fe855118 100644 --- a/sys/dev/pci/if_malo_pci.c +++ b/sys/dev/pci/if_malo_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_malo_pci.c,v 1.1 2006/11/19 14:20:55 mglocker Exp $ */ +/* $OpenBSD: if_malo_pci.c,v 1.2 2006/11/29 10:37:11 mglocker Exp $ */ /* * Copyright (c) 2006 Marcus Glocker <mglocker@openbsd.org> @@ -75,6 +75,7 @@ struct cfattach malo_pci_ca = { }; const struct pci_matchid malo_pci_devices[] = { + { PCI_VENDOR_MARVELL, PCI_PRODUCT_MARVELL_88W8310 }, { PCI_VENDOR_MARVELL, PCI_PRODUCT_MARVELL_88W8335_1 }, { PCI_VENDOR_MARVELL, PCI_PRODUCT_MARVELL_88W8335_2 } }; |