mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
staging: rtl8723bs: Fix the return value in case of error in 'rtw_wx_read32()'
[ Upstream commitc3e43d8b95] We return 0 unconditionally in 'rtw_wx_read32()'. However, 'ret' is set to some error codes in several error handling paths. Return 'ret' instead to propagate the error code. Fixes:554c0a3abf("staging: Add rtl8723bs sdio wifi driver") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
748b7861bc
commit
de7e3f88dd
|
|
@ -2289,7 +2289,7 @@ static int rtw_wx_read32(struct net_device *dev,
|
|||
exit:
|
||||
kfree(ptmp);
|
||||
|
||||
return 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int rtw_wx_write32(struct net_device *dev,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user