mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:43:08 +02: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:
parent
bfef9dc359
commit
ca25ff4717
@ -7,7 +7,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=libiwinfo
|
PKG_NAME:=libiwinfo
|
||||||
PKG_RELEASE:=30
|
PKG_RELEASE:=31
|
||||||
|
|
||||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||||
PKG_CONFIG_DEPENDS := \
|
PKG_CONFIG_DEPENDS := \
|
||||||
|
@ -62,7 +62,7 @@ extern const char *IWINFO_OPMODE_NAMES[];
|
|||||||
|
|
||||||
struct iwinfo_rate_entry {
|
struct iwinfo_rate_entry {
|
||||||
uint16_t rate;
|
uint16_t rate;
|
||||||
uint8_t mcs;
|
int8_t mcs;
|
||||||
uint8_t is_40mhz:1;
|
uint8_t is_40mhz:1;
|
||||||
uint8_t is_short_gi:1;
|
uint8_t is_short_gi:1;
|
||||||
};
|
};
|
||||||
|
@ -401,8 +401,8 @@ static void wl_get_assoclist_cb(const char *ifname,
|
|||||||
e->tx_rate.rate = sta.tx_rate;
|
e->tx_rate.rate = sta.tx_rate;
|
||||||
|
|
||||||
/* ToDo: 11n */
|
/* ToDo: 11n */
|
||||||
e.rx_rate.mcs = -1;
|
e->rx_rate.mcs = -1;
|
||||||
e.tx_rate.mcs = -1;
|
e->tx_rate.mcs = -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user