mirror of https://gitee.com/openkylin/linux.git
ath5k: remove redundant null check before kfree()
kfree() null-checks its argument. Found by smatch. Signed-off-by: Bob Copeland <me@bobcopeland.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
daf9669bea
commit
dcb784050a
|
@ -351,8 +351,7 @@ void ath5k_hw_deinit(struct ath5k_hw *ah)
|
||||||
{
|
{
|
||||||
__set_bit(ATH_STAT_INVALID, ah->status);
|
__set_bit(ATH_STAT_INVALID, ah->status);
|
||||||
|
|
||||||
if (ah->ah_rf_banks != NULL)
|
kfree(ah->ah_rf_banks);
|
||||||
kfree(ah->ah_rf_banks);
|
|
||||||
|
|
||||||
ath5k_eeprom_detach(ah);
|
ath5k_eeprom_detach(ah);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue