summaryrefslogtreecommitdiff
path: root/drivers/firmware
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.cirrus.com>2021-11-30 13:28:42 +0300
committerMark Brown <broonie@kernel.org>2021-11-30 16:08:12 +0300
commit043c0a6278ca443b1835726239dc2814c1313a9e (patch)
tree24afc49aa0faac3128b4d743b2afefac7d01a48e /drivers/firmware
parent10b155fd413d31c89057986d0fc3d4ceef8e0e9f (diff)
downloadlinux-043c0a6278ca443b1835726239dc2814c1313a9e.tar.xz
firmware: cs_dsp: Move lockdep asserts to avoid potential null pointer
Move the lockdep asserts until after the ctl pointer has been checked for NULL, to avoid potentially NULL pointer dereferences. Fixes: fb2f364fb5b9 ("firmware: cs_dsp: Add lockdep asserts to interface functions") Reported-by: kernel test robot <lkp@intel.com> Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://lore.kernel.org/r/20211130102842.26410-1-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/firmware')
-rw-r--r--drivers/firmware/cirrus/cs_dsp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/firmware/cirrus/cs_dsp.c b/drivers/firmware/cirrus/cs_dsp.c
index 3814cbba0a54..5af8171d6ced 100644
--- a/drivers/firmware/cirrus/cs_dsp.c
+++ b/drivers/firmware/cirrus/cs_dsp.c
@@ -759,11 +759,11 @@ int cs_dsp_coeff_write_ctrl(struct cs_dsp_coeff_ctl *ctl,
{
int ret = 0;
- lockdep_assert_held(&ctl->dsp->pwr_lock);
-
if (!ctl)
return -ENOENT;
+ lockdep_assert_held(&ctl->dsp->pwr_lock);
+
if (len + off * sizeof(u32) > ctl->len)
return -EINVAL;
@@ -827,11 +827,11 @@ int cs_dsp_coeff_read_ctrl(struct cs_dsp_coeff_ctl *ctl,
{
int ret = 0;
- lockdep_assert_held(&ctl->dsp->pwr_lock);
-
if (!ctl)
return -ENOENT;
+ lockdep_assert_held(&ctl->dsp->pwr_lock);
+
if (len + off * sizeof(u32) > ctl->len)
return -EINVAL;