From: Sukesh Srikakula Date: Fri, 13 May 2011 09:59:41 +0000 (+0200) Subject: staging: brcm80211: Fixed wl_assoc_params structure miss match in brcmfmac driver X-Git-Tag: v3.0-rc1~336^2~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b2cb57ff734326258294c454f5f361e2d33e1c8;p=profile%2Fivi%2Fkernel-x86-ivi.git staging: brcm80211: Fixed wl_assoc_params structure miss match in brcmfmac driver There is a mismatch in the structure definition of wl_assoc_params structure in driver & FW code. With this patch, it is corrected Cc: devel@linuxdriverproject.org Cc: linux-wireless@vger.kernel.org Reviewed-by: Franky (Zhenhui) Lin Reviewed-by: Brett Rudley Signed-off-by: Arend van Spriel Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/brcm80211/include/wlioctl.h b/drivers/staging/brcm80211/include/wlioctl.h index 40016b9..2876bd9 100644 --- a/drivers/staging/brcm80211/include/wlioctl.h +++ b/drivers/staging/brcm80211/include/wlioctl.h @@ -259,6 +259,7 @@ typedef struct wl_u32_list { /* used for association with a specific BSSID and chanspec list */ typedef struct wl_assoc_params { u8 bssid[ETH_ALEN]; /* 00:00:00:00:00:00: broadcast scan */ + u16 bssid_cnt; s32 chanspec_num; /* 0: all available channels, * otherwise count of chanspecs in chanspec_list */