]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit
ath11k: fix up some error paths
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 15 Jan 2020 17:46:52 +0000 (20:46 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Sun, 26 Jan 2020 10:51:00 +0000 (12:51 +0200)
commit7195c8747e8757daaf48d862e1314f8bcfdb3207
tree933bf4e6651c9e7a3bb5b2d1b664cb46cee14e0c
parent93634c61056e34522e824d56ff77ee2332ed7f8a
ath11k: fix up some error paths

There are two error paths where "ret" wasn't set.  Also one error path
we set the error code to -EINVAL but we should just preserve the error
code from ath11k_hal_srng_get_entrysize().  That function only returns
-EINVAL so this doesn't change anything.

I removed the "ret = 0;" initializers so that hopefully GCC will be able
to detect these sorts of bugs in the future.

Fixes: d5c65159f289 ("ath11k: driver for Qualcomm IEEE 802.11ax devices")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/ath11k/dp_tx.c