소스 검색

Thermal: fix a build warning when CONFIG_THERMAL_EMULATION cleared

Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Zhang Rui 13 년 전
부모
커밋
5e20b2e51d
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      drivers/thermal/thermal_sys.c

+ 4 - 1
drivers/thermal/thermal_sys.c

@@ -381,9 +381,12 @@ static void handle_thermal_trip(struct thermal_zone_device *tz, int trip)
 static int thermal_zone_get_temp(struct thermal_zone_device *tz,
 				unsigned long *temp)
 {
-	int ret = 0, count;
+	int ret = 0;
+#ifdef CONFIG_THERMAL_EMULATION
+	int count;
 	unsigned long crit_temp = -1UL;
 	enum thermal_trip_type type;
+#endif
 
 	mutex_lock(&tz->lock);