diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2018-07-30 07:07:03 +0000 |
---|---|---|
committer | Eduardo Valentin <edubezval@gmail.com> | 2018-08-01 09:56:12 -0700 |
commit | 84b64de597bcc26549a7cbfe2fa8022bbc142daa (patch) | |
tree | c2fb2c3d67b9a8d706df1ec87839baeb1473e373 /drivers/thermal | |
parent | 542cdf4068049458e1411b120bd5a4bbe3ddc49a (diff) | |
download | linux-84b64de597bcc26549a7cbfe2fa8022bbc142daa.tar.bz2 |
thermal: armada: fix copy-paste error in armada_thermal_probe()
The return value from devm_kzalloc() is not checked correctly. The
test is done against a wrong variable. Fix it.
Fixes: e72f03ef2543 ("thermal: armada: use the resource managed registration helper alternative")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/armada_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c index 4164a5a4e480..2c2f6d93034e 100644 --- a/drivers/thermal/armada_thermal.c +++ b/drivers/thermal/armada_thermal.c @@ -611,7 +611,7 @@ static int armada_thermal_probe(struct platform_device *pdev) return -ENOMEM; drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL); - if (!priv) + if (!drvdata) return -ENOMEM; priv->dev = &pdev->dev; |