Author: mizhka Date: Fri Sep 20 19:56:55 2019 New Revision: 352563 URL: https://svnweb.freebsd.org/changeset/base/352563
Log: MFC r352260: [Bug 240473] add support of Ralink RT5390R Wireless Card This commit adds PCI ID of Ralink RT5390R into ids table of driver ral. Tests show stability of card during day. Network speed is reasonable ( around several megabytes per second). PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240473 Reported by: [email protected] Reviewed by: ray Approved by: ray Differential Revision: https://reviews.freebsd.org/D21604 Modified: stable/11/sys/dev/ral/if_ral_pci.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/dev/ral/if_ral_pci.c ============================================================================== --- stable/11/sys/dev/ral/if_ral_pci.c Fri Sep 20 19:56:30 2019 (r352562) +++ stable/11/sys/dev/ral/if_ral_pci.c Fri Sep 20 19:56:55 2019 (r352563) @@ -99,6 +99,7 @@ static const struct ral_pci_ident ral_pci_ids[] = { { 0x1814, 0x5390, "Ralink Technology RT5390" }, { 0x1814, 0x5392, "Ralink Technology RT5392" }, { 0x1814, 0x539a, "Ralink Technology RT5390" }, + { 0x1814, 0x539b, "Ralink Technology RT5390" }, { 0x1814, 0x539f, "Ralink Technology RT5390" }, { 0x1a3b, 0x1059, "AWT RT2890" }, { 0, 0, NULL } _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
