1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[package] iwinfo: fix wl backend, unsigned -> signed for mcs idx, revision bump after latest abi changes

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30693 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow
2012-02-23 18:20:51 +00:00
parent bfef9dc359
commit ca25ff4717
3 changed files with 4 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ extern const char *IWINFO_OPMODE_NAMES[];
struct iwinfo_rate_entry {
uint16_t rate;
uint8_t mcs;
int8_t mcs;
uint8_t is_40mhz:1;
uint8_t is_short_gi:1;
};