mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-29 17:22:07 +00:00
wifi: cw1200: Fix potential NULL dereference
A recent refactoring was identified by smatch to cause another potential NULL
dereference:
drivers/net/wireless/st/cw1200/cw1200_spi.c:440 cw1200_spi_disconnect() error: we previously assumed 'self' could be null (see line 433)
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/r/202411271742.Xa7CNVh1-lkp@intel.com/
Fixes: 2719a9e715
("wifi: cw1200: Convert to GPIO descriptors")
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://patch.msgid.link/20241217-cw1200-fix-v1-1-911e6b5823ec@linaro.org
This commit is contained in:
parent
cc0c53f4fa
commit
146b6057e1
@ -442,8 +442,8 @@ static void cw1200_spi_disconnect(struct spi_device *func)
|
||||
cw1200_core_release(self->core);
|
||||
self->core = NULL;
|
||||
}
|
||||
cw1200_spi_off(self, dev_get_platdata(&func->dev));
|
||||
}
|
||||
cw1200_spi_off(self, dev_get_platdata(&func->dev));
|
||||
}
|
||||
|
||||
static int __maybe_unused cw1200_spi_suspend(struct device *dev)
|
||||
|
Loading…
Reference in New Issue
Block a user