Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edb94918 authored by Roel Kluin's avatar Roel Kluin Committed by Len Brown
Browse files

thermal: Fix test of unsigned in thermal_cooling_device_cur_state_store()



state is unsigned long so the test did not work.

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Acked-by: default avatarZhang Rui <rui.zhang@intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 13c41157
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ thermal_cooling_device_cur_state_store(struct device *dev,
	if (!sscanf(buf, "%ld\n", &state))
		return -EINVAL;

	if (state < 0)
	if ((long)state < 0)
		return -EINVAL;

	result = cdev->ops->set_cur_state(cdev, state);