Преглед изворни кода

qcacld-3.0: Fix compilation issue with FW_THERMAL_THROTTLE_SUPPORT enabled

Fix the compilation issues passing proper parameter to the function
wmi_unified_thermal_mitigation_param_cmd_send.

CRs-Fixed: 2501080
Change-Id: I9ce0038ef2844536612f0bf71314dbc214f354d9
Subrat Dash пре 5 година
родитељ
комит
ab9a7593af
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      core/wma/src/wma_data.c

+ 2 - 1
core/wma/src/wma_data.c

@@ -1733,7 +1733,8 @@ static QDF_STATUS wma_update_thermal_mitigation_to_fw(tp_wma_handle wma,
 		wma->thermal_mgmt_info.throttle_duty_cycle_tbl[thermal_level];
 	therm_data.levelconf[0].priority = 0;
 
-	return wmi_unified_thermal_mitigation_param_cmd_send(wma, &therm_data);
+	return wmi_unified_thermal_mitigation_param_cmd_send(wma->wmi_handle,
+							     &therm_data);
 }
 #else /* FW_THERMAL_THROTTLE_SUPPORT */
 /**