diff options
author | Eduardo Valentin <eduardo.valentin@ti.com> | 2012-08-23 02:37:59 +0200 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2012-09-24 08:44:38 +0200 |
commit | a7a3b8c86f9fb8e8d13fb51a4a8b68166893b9b5 (patch) | |
tree | b621d90b3975e673d6ae4d49f585d753f5ba002b /drivers | |
parent | thermal: Fix potential NULL pointer accesses (diff) | |
download | linux-a7a3b8c86f9fb8e8d13fb51a4a8b68166893b9b5.tar.xz linux-a7a3b8c86f9fb8e8d13fb51a4a8b68166893b9b5.zip |
Fix a build error.
Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/omap-thermal/omap-thermal-common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/staging/omap-thermal/omap-thermal-common.c b/drivers/staging/omap-thermal/omap-thermal-common.c index d543d5c37152..b4cd6ccf4e2d 100644 --- a/drivers/staging/omap-thermal/omap-thermal-common.c +++ b/drivers/staging/omap-thermal/omap-thermal-common.c @@ -120,7 +120,9 @@ static int omap_thermal_bind(struct thermal_zone_device *thermal, /* TODO: bind with min and max states */ /* Simple thing, two trips, one passive another critical */ - return thermal_zone_bind_cooling_device(thermal, 0, cdev); + return thermal_zone_bind_cooling_device(thermal, 0, cdev, + THERMAL_NO_LIMIT, + THERMAL_NO_LIMIT); } /* Unbind callback functions for thermal zone */ |