From: Leo Yan Date: Tue, 29 Mar 2016 11:24:15 +0000 (+0800) Subject: thermal: use %d to print S32 parameters X-Git-Tag: v4.14-rc1~3364^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15333e3af1de37b1b214b28c85fe9a7b257fb92c;p=platform%2Fkernel%2Flinux-rpi.git thermal: use %d to print S32 parameters Power allocator's parameters are S32 type, so use %d to print them. Acked-by: Javi Merino Signed-off-by: Leo Yan Signed-off-by: Eduardo Valentin --- diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index f1db496..5133cd1 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -959,7 +959,7 @@ static DEVICE_ATTR(sustainable_power, S_IWUSR | S_IRUGO, sustainable_power_show, struct thermal_zone_device *tz = to_thermal_zone(dev); \ \ if (tz->tzp) \ - return sprintf(buf, "%u\n", tz->tzp->name); \ + return sprintf(buf, "%d\n", tz->tzp->name); \ else \ return -EIO; \ } \