staging: rtl8188eu: remove efuse_max variable in hal_EfusePartialWriteCheck
authorIvan Safonov <insafonov@gmail.com>
Mon, 20 Jun 2016 05:27:37 +0000 (12:27 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 21 Aug 2016 16:15:28 +0000 (18:15 +0200)
This variable does not used after assigning value.

Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_efuse.c

index eee0e13..d18ea6c 100644 (file)
@@ -769,11 +769,10 @@ static bool hal_EfusePartialWriteCheck(struct adapter *pAdapter, u8 efuseType, u
        bool bRet = false;
        u8 i, efuse_data = 0, cur_header = 0;
        u8 matched_wden = 0, badworden = 0;
-       u16     startAddr = 0, efuse_max_available_len = 0, efuse_max = 0;
+       u16     startAddr = 0, efuse_max_available_len = 0;
        struct pgpkt curPkt;
 
        EFUSE_GetEfuseDefinition(pAdapter, efuseType, TYPE_AVAILABLE_EFUSE_BYTES_BANK, (void *)&efuse_max_available_len);
-       EFUSE_GetEfuseDefinition(pAdapter, efuseType, TYPE_EFUSE_REAL_CONTENT_LEN, (void *)&efuse_max);
 
        rtw_hal_get_hwreg(pAdapter, HW_VAR_EFUSE_BYTES, (u8 *)&startAddr);
        startAddr %= EFUSE_REAL_CONTENT_LEN;