diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-16 17:58:33 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-16 17:58:33 +0000 |
commit | b33a75d2f1a179fbe8d4ab0a097e63640e6555b3 (patch) | |
tree | 6443849160089c37b8dd301f687e5557bd1b6329 /package/iwinfo/src | |
parent | 66806831eb9de6bf58f02f3c7d3b7f77f9f0118e (diff) | |
download | upstream-b33a75d2f1a179fbe8d4ab0a097e63640e6555b3.tar.gz upstream-b33a75d2f1a179fbe8d4ab0a097e63640e6555b3.tar.bz2 upstream-b33a75d2f1a179fbe8d4ab0a097e63640e6555b3.zip |
[package] iwinfo: fix detection of Bullet M5, the PCI ID was wrong
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30591 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iwinfo/src')
-rw-r--r-- | package/iwinfo/src/iwinfo_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/iwinfo/src/iwinfo_lib.c b/package/iwinfo/src/iwinfo_lib.c index e33c795078..0e919861ca 100644 --- a/package/iwinfo/src/iwinfo_lib.c +++ b/package/iwinfo/src/iwinfo_lib.c @@ -351,7 +351,7 @@ const struct iwinfo_hardware_entry IWINFO_HARDWARE_ENTRIES[] = { { VENDOR_UBNT, "NanoStation M2", 0x168c, 0x002a, 0x0777, 0xe012, 10, 0 }, /* ToDo: confirm offset */ { VENDOR_UBNT, "NanoStation M5", 0x168c, 0x002a, 0x0777, 0xe005, 5, 0 }, /* ToDo: confirm offset */ { VENDOR_UBNT, "Bullet M2", 0x168c, 0x002a, 0x0777, 0xe202, 12, 0 }, - { VENDOR_UBNT, "Bullet M5", 0x168c, 0x002a, 0x0777, 0xe205, 5, 0 }, + { VENDOR_UBNT, "Bullet M5", 0x168c, 0x002a, 0x0777, 0xe805, 5, 0 }, { VENDOR_ATH, "AR9220", 0x168c, 0x0029, 0x168c, 0xa094, 0, 0 }, { VENDOR_ATH, "AR9223", 0x168c, 0x0029, 0x168c, 0xa095, 0, 0 }, |