瀏覽代碼

qcacmn: Correct the error handling in event registration

wmi_oem_response_event_id is only defined for TLV based
architectures. Current code returns an error if registration to a
particular event fails. But registration failure is not wrong
for legacy architectures, as event is not defined.
So do not check return value for error

Change-Id: Ia54431cee2958b59166394360a3fc961abad85ce
CRs-Fixed: 2492494
Abhiram Jogadenu 5 年之前
父節點
當前提交
cede8ed032
共有 1 個文件被更改,包括 4 次插入5 次删除
  1. 4 5
      target_if/wifi_pos/src/target_if_wifi_pos.c

+ 4 - 5
target_if/wifi_pos/src/target_if_wifi_pos.c

@@ -336,15 +336,14 @@ QDF_STATUS target_if_wifi_pos_register_events(struct wlan_objmgr_psoc *psoc)
 		return QDF_STATUS_E_INVAL;
 	}
 
-	ret = wmi_unified_register_event_handler(
+	/* wmi_oem_response_event_id is not defined for legacy targets.
+	 * So do not check for error for this event.
+	 */
+	wmi_unified_register_event_handler(
 			get_wmi_unified_hdl_from_psoc(psoc),
 			wmi_oem_response_event_id,
 			target_if_wifi_pos_oem_rsp_ev_handler,
 			WMI_RX_WORK_CTX);
-	if (ret) {
-		target_if_err("register_event_handler failed: err %d", ret);
-		return QDF_STATUS_E_INVAL;
-	}
 
 	ret = wmi_unified_register_event_handler(
 			get_wmi_unified_hdl_from_psoc(psoc),