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
This commit is contained in:
Abdul Muqtadeer Ahmed
2021-04-01 18:10:28 +05:30
committed by snandini
부모 614e92f4bb
커밋 de4bda2169

파일 보기

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