OSDN Git Service

Thermal:Remove usless if(!result) before return tz
authorYao Dongdong <yaodongdong@huawei.com>
Tue, 28 Oct 2014 07:40:25 +0000 (07:40 +0000)
committerEduardo Valentin <edubezval@gmail.com>
Mon, 3 Nov 2014 22:59:50 +0000 (18:59 -0400)
result is always zero when comes here.

Signed-off-by: Yao Dongdong <yaodongdong@huawei.com>
Acked-by: Eduardo Valentin <edubezval@gmail.com>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
drivers/thermal/thermal_core.c

index 9bf10aa..43b9070 100644 (file)
@@ -1575,8 +1575,7 @@ struct thermal_zone_device *thermal_zone_device_register(const char *type,
 
        thermal_zone_device_update(tz);
 
-       if (!result)
-               return tz;
+       return tz;
 
 unregister:
        release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);