Browse Source

thermal: int3403: Delete a check before thermal_zone_device_unregister()

The thermal_zone_device_unregister() function tests whether its argument
is NULL and then returns immediately. Thus the test around the call
is not needed.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Markus Elfring 10 years ago
parent
commit
931b9c86d9
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/thermal/int340x_thermal/int3403_thermal.c

+ 1 - 2
drivers/thermal/int340x_thermal/int3403_thermal.c

@@ -293,8 +293,7 @@ static int int3403_sensor_add(struct int3403_priv *priv)
 	return 0;
 
  err_free_obj:
-	if (obj->tzone)
-		thermal_zone_device_unregister(obj->tzone);
+	thermal_zone_device_unregister(obj->tzone);
 	return result;
 }