Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3234f5b0 authored by Ben Hutchings's avatar Ben Hutchings Committed by John W. Linville
Browse files

rtl8192cu: Fix unbalanced irq enable in error path of rtl92cu_hw_init()



Fixes: a53268be ('rtlwifi: rtl8192cu: Fix too long disable of IRQs')
Cc: stable@vger.kernel.org
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 5f918699
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1001,7 +1001,7 @@ int rtl92cu_hw_init(struct ieee80211_hw *hw)
	err = _rtl92cu_init_mac(hw);
	err = _rtl92cu_init_mac(hw);
	if (err) {
	if (err) {
		RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "init mac failed!\n");
		RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "init mac failed!\n");
		return err;
		goto exit;
	}
	}
	err = rtl92c_download_fw(hw);
	err = rtl92c_download_fw(hw);
	if (err) {
	if (err) {