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
@@ -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;
}
/**