From: Dan Carpenter Date: Fri, 28 Oct 2022 15:02:34 +0000 (+0300) Subject: thermal/core: fix error code in __thermal_cooling_device_register() X-Git-Tag: v5.15.92~133 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed08f958e481268a755b30e91958a821d0f55586;p=platform%2Fkernel%2Flinux-rpi.git thermal/core: fix error code in __thermal_cooling_device_register() [ Upstream commit e49a1e1ee078aee21006192076a8d93335e0daa9 ] Return an error pointer if ->get_max_state() fails. The current code returns NULL which will cause an oops in the callers. Fixes: c408b3d1d9bb ("thermal: Validate new state in cur_state_store()") Signed-off-by: Dan Carpenter Signed-off-by: Rafael J. Wysocki Stable-dep-of: 6c54b7bc8a31 ("thermal: core: call put_device() only after device_register() fails") Signed-off-by: Sasha Levin --- diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index 96d6082..b21d886 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -914,7 +914,8 @@ __thermal_cooling_device_register(struct device_node *np, cdev->device.class = &thermal_class; cdev->devdata = devdata; - if (cdev->ops->get_max_state(cdev, &cdev->max_state)) + ret = cdev->ops->get_max_state(cdev, &cdev->max_state); + if (ret) goto out_kfree_type; thermal_cooling_device_setup_sysfs(cdev);