wifi: rtlwifi: rtl8821ae: remove conditional return with no effect in _rtl8821ae_llt_write()

Both branches of the check return the same value, so the check has
no effect. Remove it and return the value directly.

This is the result of running the Coccinelle script from
scripts/coccinelle/misc/cond_return_no_effect.cocci.

Signed-off-by: Sang-Heon Jeon <ekffu200098@gmail.com>
Acked-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20260726134034.1385834-2-ekffu200098@gmail.com
This commit is contained in:
Sang-Heon Jeon
2026-07-26 22:40:30 +09:00
committed by Ping-Ke Shih
parent 6a43bbee78
commit c13ab5bed7

View File

@@ -1462,12 +1462,7 @@ static bool _rtl8821ae_init_llt_table(struct ieee80211_hw *hw, u32 boundary)
return status;
}
status = _rtl8821ae_llt_write(hw, last_entry_of_txpktbuf,
txpktbuf_bndy);
if (!status)
return status;
return status;
return _rtl8821ae_llt_write(hw, last_entry_of_txpktbuf, txpktbuf_bndy);
}
static bool _rtl8821ae_dynamic_rqpn(struct ieee80211_hw *hw, u32 boundary,