thermal: ti-soc-thermal: ti-bandgap.c: Cleaning up wrong address is checked
authorRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Mon, 2 Jun 2014 21:25:30 +0000 (23:25 +0200)
committerZhang Rui <rui.zhang@intel.com>
Tue, 1 Jul 2014 01:52:35 +0000 (09:52 +0800)
Wrong address is checked after memory allocation.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/ti-soc-thermal/ti-bandgap.c

index a1271b5..634b6ce 100644 (file)
@@ -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);
        }