wifi: brcmfmac: avoid invalid list operation when vendor attach fails
[ Upstream commit b822015a1f57268f5b2ff656736dc4004e7097da ] When the brcmf_fwvid_attach() fails the driver instance is not added to the vendor list. Hence we should not try to delete it from that list when the brcmf_fwvid_detach() function is called in cleanup path. Cc: stable@vger.kernel.org # 6.2.x Fixes: d6a5c562214f ("wifi: brcmfmac: add support for vendor-specific firmware api") Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://msgid.link/20240106103835.269149-3-arend.vanspriel@broadcom.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
190794848e
commit
e76f6b9618
@ -187,9 +187,10 @@ void brcmf_fwvid_detach_ops(struct brcmf_pub *drvr)
|
||||
|
||||
mutex_lock(&fwvid_list_lock);
|
||||
|
||||
drvr->vops = NULL;
|
||||
list_del(&drvr->bus_if->list);
|
||||
|
||||
if (drvr->vops) {
|
||||
drvr->vops = NULL;
|
||||
list_del(&drvr->bus_if->list);
|
||||
}
|
||||
mutex_unlock(&fwvid_list_lock);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user