Ver Fonte

qcacld-3.0: Fix return type for hdd_data_stall_process_event

Fix return type for hdd_data_stall_process_event to match with
data_stall_detect_cb callback return type.

Change-Id: I6d81171f32df7a0e6e66d5651739463c422f4a9d
CRs-Fixed: 2674550
Bapiraju Alla há 5 anos atrás
pai
commit
947eeb60b8
1 ficheiros alterados com 1 adições e 3 exclusões
  1. 1 3
      core/hdd/src/wlan_hdd_data_stall_detection.c

+ 1 - 3
core/hdd/src/wlan_hdd_data_stall_detection.c

@@ -67,12 +67,10 @@ static inline void hdd_data_stall_send_event(uint32_t reason)
  *
  * Return: void
  */
-static QDF_STATUS hdd_data_stall_process_event(
+static void hdd_data_stall_process_event(
 			struct data_stall_event_info *data_stall_info)
 {
 	hdd_data_stall_send_event(data_stall_info->data_stall_type);
-
-	return QDF_STATUS_SUCCESS;
 }
 
 /**