Selaa lähdekoodia

qcacld-3.0: Remove the NULL check for a pointer which will never be NULL

psoc_cfg is pointing to the address of a structure variable,
which will never be NULL.

To address this remove the NULL check.

Change-Id: I12f539ce2feace550c403ffc996fa315994470a7
CRs-Fixed: 2911862
Abdul Muqtadeer Ahmed 4 vuotta sitten
vanhempi
sitoutus
de4bda2169
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      components/pmo/core/src/wlan_pmo_suspend_resume.c

+ 1 - 2
components/pmo/core/src/wlan_pmo_suspend_resume.c

@@ -816,8 +816,7 @@ pmo_core_enable_wow_in_fw(struct wlan_objmgr_psoc *psoc,
 		pmo_info("RTPM wow");
 	}
 
-	if ((psoc_cfg) &&
-	    (psoc_cfg->is_mod_dtim_on_sys_suspend_enabled)) {
+	if (psoc_cfg->is_mod_dtim_on_sys_suspend_enabled) {
 		pmo_info("mod DTIM enabled");
 		param.flags |= WMI_WOW_FLAG_MOD_DTIM_ON_SYS_SUSPEND;
 	}