From: Rickard Strandqvist Date: Mon, 2 Jun 2014 21:25:30 +0000 (+0200) Subject: thermal: ti-soc-thermal: ti-bandgap.c: Cleaning up wrong address is checked X-Git-Tag: v3.16-rc5~34^2~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fbe2ddcdcca9c15558533cb75e5161152338b548;p=karo-tx-linux.git thermal: ti-soc-thermal: ti-bandgap.c: Cleaning up wrong address is checked Wrong address is checked after memory allocation. Signed-off-by: Rickard Strandqvist Signed-off-by: Zhang Rui --- diff --git a/drivers/thermal/ti-soc-thermal/ti-bandgap.c b/drivers/thermal/ti-soc-thermal/ti-bandgap.c index a1271b55103a..634b6ce0e63a 100644 --- a/drivers/thermal/ti-soc-thermal/ti-bandgap.c +++ b/drivers/thermal/ti-soc-thermal/ti-bandgap.c @@ -1155,7 +1155,7 @@ static struct ti_bandgap *ti_bandgap_build(struct platform_device *pdev) /* register shadow for context save and restore */ bgp->regval = devm_kzalloc(&pdev->dev, sizeof(*bgp->regval) * bgp->conf->sensor_count, GFP_KERNEL); - if (!bgp) { + if (!bgp->regval) { dev_err(&pdev->dev, "Unable to allocate mem for driver ref\n"); return ERR_PTR(-ENOMEM); }