diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-29 10:10:46 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-29 10:10:46 +0000 |
commit | f01fe9b88220b5378666ee36c7c03bacd25c1d9c (patch) | |
tree | ca84e2ad405903c672f1c1782d88c1f04fe66add | |
parent | 14fae1493676ed8a8fce26ce5aa7be842612e2bd (diff) | |
download | master-187ad058-f01fe9b88220b5378666ee36c7c03bacd25c1d9c.tar.gz master-187ad058-f01fe9b88220b5378666ee36c7c03bacd25c1d9c.tar.bz2 master-187ad058-f01fe9b88220b5378666ee36c7c03bacd25c1d9c.zip |
iwinfo: add hwinfo for Rt3050 and maintain alphabetic order
Signed-off-by: Daniel Golle <dgolle@allnet.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33293 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/iwinfo/src/iwinfo_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/iwinfo/src/iwinfo_lib.c b/package/iwinfo/src/iwinfo_lib.c index 8d5569d4db..912ae2f1d0 100644 --- a/package/iwinfo/src/iwinfo_lib.c +++ b/package/iwinfo/src/iwinfo_lib.c @@ -369,8 +369,9 @@ const struct iwinfo_hardware_entry IWINFO_HARDWARE_ENTRIES[] = { { VENDOR_ATH, "AR9220", 0x168c, 0x0029, 0x168c, 0xa094, 0, 0 }, { VENDOR_ATH, "AR9223", 0x168c, 0x0029, 0x168c, 0xa095, 0, 0 }, { VENDOR_ATH, "AR9285", 0x168c, 0x002b, 0x168c, 0xa091, 0, 0 }, - { VENDOR_RALINK, "Rt3352", 0x1814, 0x3352, 0x1814, 0x000c, 0, 0 }, + { VENDOR_RALINK, "Rt3050", 0x1814, 0x3050, 0x1814, 0x0005, 0, 0 }, { VENDOR_RALINK, "Rt3052", 0x1814, 0x3052, 0x1814, 0x0008, 0, 0 }, + { VENDOR_RALINK, "Rt3352", 0x1814, 0x3352, 0x1814, 0x000c, 0, 0 }, #endif { NULL } }; |