Commit 1f3b0085 authored by Sukesh Srikakula's avatar Sukesh Srikakula Committed by Greg Kroah-Hartman

staging: brcm80211: Removed unused variable from brcmfmac driver

Removed unused variable from wl_profile structure

Cc: devel@linuxdriverproject.org
Cc: linux-wireless@vger.kernel.org
Reviewed-by: default avatarFranky (Zhenhui) Lin <frankyl@broadcom.com>
Reviewed-by: default avatarBrett Rudley <brudley@broadcom.com>
Signed-off-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 9446af06
...@@ -4107,8 +4107,6 @@ static void *wl_read_prof(struct wl_priv *wl, s32 item) ...@@ -4107,8 +4107,6 @@ static void *wl_read_prof(struct wl_priv *wl, s32 item)
switch (item) { switch (item) {
case WL_PROF_SEC: case WL_PROF_SEC:
return &wl->profile->sec; return &wl->profile->sec;
case WL_PROF_ACT:
return &wl->profile->active;
case WL_PROF_BSSID: case WL_PROF_BSSID:
return &wl->profile->bssid; return &wl->profile->bssid;
case WL_PROF_SSID: case WL_PROF_SSID:
...@@ -4142,9 +4140,6 @@ wl_update_prof(struct wl_priv *wl, const wl_event_msg_t *e, void *data, ...@@ -4142,9 +4140,6 @@ wl_update_prof(struct wl_priv *wl, const wl_event_msg_t *e, void *data,
case WL_PROF_SEC: case WL_PROF_SEC:
memcpy(&wl->profile->sec, data, sizeof(wl->profile->sec)); memcpy(&wl->profile->sec, data, sizeof(wl->profile->sec));
break; break;
case WL_PROF_ACT:
wl->profile->active = *(bool *)data;
break;
case WL_PROF_BEACONINT: case WL_PROF_BEACONINT:
wl->profile->beacon_interval = *(u16 *)data; wl->profile->beacon_interval = *(u16 *)data;
break; break;
......
...@@ -235,7 +235,6 @@ struct wl_profile { ...@@ -235,7 +235,6 @@ struct wl_profile {
struct wl_security sec; struct wl_security sec;
struct wl_ibss ibss; struct wl_ibss ibss;
s32 band; s32 band;
bool active;
}; };
/* dongle iscan event loop */ /* dongle iscan event loop */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment