Commit e80affde authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo

rtlwifi: remove redundant initialization of variable ul_encalgo

Variable ul_encalgo is initialized with a value that is never read,
it is being re-assigned a new value in every case in the following
switch statement. The initialization is redundant and can be removed.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Acked-by: default avatarPing-Ke Shih <pkshih@realtek.com>
Signed-off-by: default avatarKalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220130223714.6999-1-colin.i.king@gmail.com
parent 6d3ac94b
...@@ -208,7 +208,7 @@ void rtl_cam_empty_entry(struct ieee80211_hw *hw, u8 uc_index) ...@@ -208,7 +208,7 @@ void rtl_cam_empty_entry(struct ieee80211_hw *hw, u8 uc_index)
u32 ul_command; u32 ul_command;
u32 ul_content; u32 ul_content;
u32 ul_encalgo = rtlpriv->cfg->maps[SEC_CAM_AES]; u32 ul_encalgo;
u8 entry_i; u8 entry_i;
switch (rtlpriv->sec.pairwise_enc_algorithm) { switch (rtlpriv->sec.pairwise_enc_algorithm) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment