staging: rtl8723bs: Remove redundant initialization of variable efuseValue
authorColin Ian King <colin.i.king@gmail.com>
Tue, 4 Oct 2022 15:35:39 +0000 (16:35 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 20 Oct 2022 15:21:33 +0000 (17:21 +0200)
commit0fd4d8b7e87e472d54fdb4912703c1c09d12ac70
tree3fda6a6c645862b0336ba3db5c79ca05bb0b9f42
parentc21899dcab317de9007e65dbf218400782ee064c
staging: rtl8723bs: Remove redundant initialization of variable efuseValue

The variable efuseValue is being initialized with a value that is never
read. The variable is being re-assigned later on. The initialization is
redundant and can be removed.

Cleans up warning:
drivers/staging/rtl8723bs/core/rtw_efuse.c:285:6: warning: variable
'efuseValue' set but not used [-Wunused-but-set-variable]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20221004153539.150867-1-colin.i.king@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_efuse.c