mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
rtlwifi: rtl8188ee: remove redundant assignment to rtstatus
Variable rtstatus is being initialized with a value that is never read as rtstatus is being re-assigned a little later on. The assignment is redundant and hence can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
9a1ace64ca
commit
25a986e426
@ -1039,7 +1039,7 @@ int rtl88ee_hw_init(struct ieee80211_hw *hw)
|
||||
struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
|
||||
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
|
||||
struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
|
||||
bool rtstatus = true;
|
||||
bool rtstatus;
|
||||
int err = 0;
|
||||
u8 tmp_u1b, u1byte;
|
||||
unsigned long flags;
|
||||
|
Loading…
Reference in New Issue
Block a user