mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
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 <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
This commit is contained in:
parent
d0f9d64a0b
commit
fbe2ddcdcc
1 changed files with 1 additions and 1 deletions
|
@ -1155,7 +1155,7 @@ static struct ti_bandgap *ti_bandgap_build(struct platform_device *pdev)
|
||||||
/* register shadow for context save and restore */
|
/* register shadow for context save and restore */
|
||||||
bgp->regval = devm_kzalloc(&pdev->dev, sizeof(*bgp->regval) *
|
bgp->regval = devm_kzalloc(&pdev->dev, sizeof(*bgp->regval) *
|
||||||
bgp->conf->sensor_count, GFP_KERNEL);
|
bgp->conf->sensor_count, GFP_KERNEL);
|
||||||
if (!bgp) {
|
if (!bgp->regval) {
|
||||||
dev_err(&pdev->dev, "Unable to allocate mem for driver ref\n");
|
dev_err(&pdev->dev, "Unable to allocate mem for driver ref\n");
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue