On Fri, 2013-10-18 at 16:33 -0500, Larry Finger wrote: > Sparse shows the following warning: > > CHECK drivers/staging/rtl8188eu/core/rtw_wlan_util.c > drivers/staging/rtl8188eu/core/rtw_wlan_util.c:1635:25: warning: cast to > restricted __le16 > > Signed-off-by: Larry Finger <Larry.Finger@xxxxxxxxxxxx> > --- > drivers/staging/rtl8188eu/core/rtw_wlan_util.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/rtl8188eu/core/rtw_wlan_util.c > b/drivers/staging/rtl8188eu/core/rtw_wlan_util.c > index 153ec61..30ba18c 100644 > --- a/drivers/staging/rtl8188eu/core/rtw_wlan_util.c > +++ b/drivers/staging/rtl8188eu/core/rtw_wlan_util.c > @@ -1632,7 +1632,7 @@ void process_addba_req(struct adapter *padapter, u8 > *paddba_req, u8 *addr) > psta = rtw_get_stainfo(pstapriv, addr); > if (psta) { > - param = le16_to_cpu(preq->BA_para_set); > + param = preq->BA_para_set; preq is pointing to a header which has fixed byte order on the wire, so this field presumably really is little-endian and the struct definition should be changed. Comapre the various headers in drivers/staging/rtl8188eu/include/wifi.h with struct ieee80211_mgmt in include/linux/ieee80211.h. Ben. > tid = (param>>2)&0x0f; > preorder_ctrl = &psta->recvreorder_ctrl[tid]; > preorder_ctrl->indicate_seq = 0xffff; -- Ben Hutchings, Staff Engineer, Solarflare Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked. _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel