diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2018-10-02 02:05:35 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2018-10-02 02:05:35 +0000 |
commit | 7db65d7b0d2bc1bfc9a7de5b967193762dfb4d97 (patch) | |
tree | 9be45cdbc2893a5ecc92417d2bc9f86f759fe938 /sys/dev/pci/if_ral_pci.c | |
parent | ba7b94a14adb3c513a0aab9ead2fb3d41f43e3e2 (diff) |
Add support for RT3290 chipset by James Hastings.
Tested by me and James Hastings.
Diffstat (limited to 'sys/dev/pci/if_ral_pci.c')
-rw-r--r-- | sys/dev/pci/if_ral_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ral_pci.c b/sys/dev/pci/if_ral_pci.c index d2e7084bc6d..d930e2327b7 100644 --- a/sys/dev/pci/if_ral_pci.c +++ b/sys/dev/pci/if_ral_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ral_pci.c,v 1.26 2017/05/31 03:45:15 jsg Exp $ */ +/* $OpenBSD: if_ral_pci.c,v 1.27 2018/10/02 02:05:34 kevlo Exp $ */ /*- * Copyright (c) 2005-2010 Damien Bergamini <damien.bergamini@free.fr> @@ -133,6 +133,7 @@ const struct pci_matchid ral_pci_devices[] = { { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3090 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3091 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3092 }, + { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3290 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3562 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3592 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3593 }, |