diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-05-31 03:45:16 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-05-31 03:45:16 +0000 |
commit | 824d54a2c3b93ab15b73dc525ea91c58e1a47f30 (patch) | |
tree | 6160ff7351a3469a2d0c37d93b5471206e24684b /sys/dev/pci | |
parent | 889b86468614aedddf9ebb7509219e849a457e96 (diff) |
Add support for Ralink RT5360. From Kevin Lo who tested with a
D-Link DWA-525 rev A2.
Diffstat (limited to 'sys/dev/pci')
-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 c306a9275fc..d2e7084bc6d 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.25 2016/08/17 11:50:52 stsp Exp $ */ +/* $OpenBSD: if_ral_pci.c,v 1.26 2017/05/31 03:45:15 jsg Exp $ */ /*- * Copyright (c) 2005-2010 Damien Bergamini <damien.bergamini@free.fr> @@ -136,6 +136,7 @@ const struct pci_matchid ral_pci_devices[] = { { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3562 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3592 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3593 }, + { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT5360 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT5390 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT5392 }, { PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT5390_1 }, |