aboutsummaryrefslogtreecommitdiffstats
path: root/package/iwinfo/src/iwinfo_lib.c
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-08-15 16:25:38 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-08-15 16:25:38 +0000
commit82f298b9f1cc2d6f0cde9ece8de42389a0bfb38f (patch)
tree4f1a6082ac009eae99e3023ddf32ad57e6ca8f3c /package/iwinfo/src/iwinfo_lib.c
parent4769dd7237a2fd29e928bee2d3cd4d62014f05d1 (diff)
downloadupstream-82f298b9f1cc2d6f0cde9ece8de42389a0bfb38f.tar.gz
upstream-82f298b9f1cc2d6f0cde9ece8de42389a0bfb38f.tar.bz2
upstream-82f298b9f1cc2d6f0cde9ece8de42389a0bfb38f.zip
iwinfo: add hw info support for Rt3xxx SoCs
This takes the device_id and subsystem_id from the EEPROM, I'll add the info for other Rt3xxx chips in the next days. [jow: minor whitespace changes] Signed-off-by: Daniel Golle <dgolle@allnet.de> SVN-Revision: 33199
Diffstat (limited to 'package/iwinfo/src/iwinfo_lib.c')
-rw-r--r--package/iwinfo/src/iwinfo_lib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/package/iwinfo/src/iwinfo_lib.c b/package/iwinfo/src/iwinfo_lib.c
index b2fc6aa3b7..5ca0a45107 100644
--- a/package/iwinfo/src/iwinfo_lib.c
+++ b/package/iwinfo/src/iwinfo_lib.c
@@ -314,6 +314,7 @@ const struct iwinfo_iso3166_label IWINFO_ISO3166_NAMES[] = {
const char VENDOR_UBNT[] = "Ubiquiti";
const char VENDOR_ATH[] = "Atheros";
+const char VENDOR_RALINK[] = "RaLink";
const struct iwinfo_hardware_entry IWINFO_HARDWARE_ENTRIES[] = {
/* { vendor, model, vendorid, deviceid, subsys vendorid, subsys deviceid, poweroff, freqoff } */
@@ -368,6 +369,7 @@ 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 },
#endif
{ NULL }
};