Re: [PATCH] staging: rtl8723au: core: rtw_mlme_ext: Removed variables that is never used

From: Jes Sorensen
Date: Sun Feb 01 2015 - 17:58:36 EST


Rickard Strandqvist <rickard_strandqvist@xxxxxxxxxxxxxxxxxx> writes:
> Variable was assigned a value that was never used.
> I have also removed all the code that thereby serves no purpose.
>
> This was found using a static code analysis program called cppcheck
>
> Signed-off-by: Rickard Strandqvist <rickard_strandqvist@xxxxxxxxxxxxxxxxxx>
> ---
> drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c
> index 0e0f73c..7c60fed 100644
> --- a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c
> +++ b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c
> @@ -2515,7 +2515,6 @@ static void issue_probersp(struct rtw_adapter *padapter, unsigned char *da,
> unsigned char *mac, *bssid;
> struct xmit_priv *pxmitpriv = &padapter->xmitpriv;
> #ifdef CONFIG_8723AU_AP_MODE
> - const u8 *pwps_ie;
> u8 *ssid_ie;
> int ssid_ielen;
> int ssid_ielen_diff;
> @@ -2576,7 +2575,7 @@ static void issue_probersp(struct rtw_adapter *padapter, unsigned char *da,
>
> #ifdef CONFIG_8723AU_AP_MODE
> if ((pmlmeinfo->state & 0x03) == MSR_AP) {
> - pwps_ie = cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
> + cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
> WLAN_OUI_TYPE_MICROSOFT_WPS,
> cur_network->IEs,
> cur_network->IELength);

If you want to modify this, you need to fix up the formatting to go with
it.

NACK

Jes

> @@ -6196,13 +6195,9 @@ int set_chplan_hdl23a(struct rtw_adapter *padapter, const u8 *pbuf)
>
> int led_blink_hdl23a(struct rtw_adapter *padapter, const u8 *pbuf)
> {
> - struct LedBlink_param *ledBlink_param;
> -
> if (!pbuf)
> return H2C_PARAMETERS_ERROR;
>
> - ledBlink_param = (struct LedBlink_param *)pbuf;
> -
> return H2C_SUCCESS;
> }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/