diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2006-11-29 10:37:12 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2006-11-29 10:37:12 +0000 |
commit | 05b562347f8f72d181574c98799c66ecd5db1bc2 (patch) | |
tree | 628cdb4e16ff9573ab9d22df7195414a2a8fbc81 /sys/dev/pci/if_malo_pci.c | |
parent | 9a614deb29cae792e0ba40093a55d164ccee7a5d (diff) |
Add another ID to match for the 88W8310 chip.
ok deraadt@
Diffstat (limited to 'sys/dev/pci/if_malo_pci.c')
-rw-r--r-- | sys/dev/pci/if_malo_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 } }; |