diff options
Diffstat (limited to 'kernel/drivers/thermal/gov_bang_bang.c')
-rw-r--r-- | kernel/drivers/thermal/gov_bang_bang.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/drivers/thermal/gov_bang_bang.c b/kernel/drivers/thermal/gov_bang_bang.c index c5dd76b2e..70836c5b8 100644 --- a/kernel/drivers/thermal/gov_bang_bang.c +++ b/kernel/drivers/thermal/gov_bang_bang.c @@ -25,14 +25,13 @@ static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip) { - long trip_temp; - unsigned long trip_hyst; + int trip_temp, trip_hyst; struct thermal_instance *instance; tz->ops->get_trip_temp(tz, trip, &trip_temp); tz->ops->get_trip_hyst(tz, trip, &trip_hyst); - dev_dbg(&tz->device, "Trip%d[temp=%ld]:temp=%d:hyst=%ld\n", + dev_dbg(&tz->device, "Trip%d[temp=%d]:temp=%d:hyst=%d\n", trip, trip_temp, tz->temperature, trip_hyst); |