Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f17212d4 authored by Sameer Thalappil's avatar Sameer Thalappil Committed by Gerrit - the friendly Code Review server
Browse files

cnss: Fix spelling and downgrade error level



Fix spelling in error message; also downgrade the error level.
Swappable partition is an optional feature, not finding the image
is not an error.

CRs-Fixed: 732663
Change-Id: If3c15d6ae1984d75db6ca7e64766eff3198e8bbe
Signed-off-by: default avatarSameer Thalappil <sameert@codeaurora.org>
parent 957c188a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -900,7 +900,7 @@ int cnss_get_codeswap_struct(struct codeswap_codeseg_info *swap_seg)
		return -ENOENT;
	}
	if (!penv->fw_available) {
		pr_err("%s: fw is not availabe\n", __func__);
		pr_debug("%s: fw is not available\n", __func__);
		return -ENOENT;
	}

@@ -928,7 +928,7 @@ static void cnss_wlan_memory_expansion(void)
	cnss_seg_info = penv->cnss_seg_info;

	if (!cnss_seg_info) {
		pr_err("cnss: cnss_seg_info is NULL\n");
		pr_debug("cnss: cnss_seg_info is NULL\n");
		goto end;
	}