From: Juuso Oikarinen Date: Thu, 15 Oct 2009 07:33:26 +0000 (+0300) Subject: wl1271: Set IEEE80211_FCTL_TODS in the null data template X-Git-Tag: v2.6.33-rc1~388^2~599^2~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a38079e0da19447ab1c41e42094b311c6e945e4;p=profile%2Fivi%2Fkernel-x86-ivi.git wl1271: Set IEEE80211_FCTL_TODS in the null data template Set the IEEE80211_FCTL_TODS bit in the FC of the null data template. This is a mandatory requirement in specification. Signed-off-by: Juuso Oikarinen Cc: Vidhya Govindan Cc: Janne Ylälehto Reviewed-by: Janne Ylalehto Signed-off-by: Luciano Coelho Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/wl12xx/wl1271_cmd.c b/drivers/net/wireless/wl12xx/wl1271_cmd.c index fe4f1e6..1d64aa4 100644 --- a/drivers/net/wireless/wl12xx/wl1271_cmd.c +++ b/drivers/net/wireless/wl12xx/wl1271_cmd.c @@ -769,7 +769,8 @@ int wl1271_cmd_build_null_data(struct wl1271 *wl) memcpy(template.header.sa, wl->mac_addr, ETH_ALEN); template.header.frame_ctl = cpu_to_le16(IEEE80211_FTYPE_DATA | - IEEE80211_STYPE_NULLFUNC); + IEEE80211_STYPE_NULLFUNC | + IEEE80211_FCTL_TODS); return wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, &template, sizeof(template));