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

Commit 6102c968 authored by Jordan Crouse's avatar Jordan Crouse
Browse files

net: cnss2: Fix compile warnings in pci.c



Fix an incorrect printk format string in cnss_wlfw_request_mem_ind_cb().

Fixes: d5ec14ca ("net: cnss2: Add snapshot of CNSS2 driver")
Change-Id: Ic0dedbad99fe54d47d544c8ee0b178c0318cc52b
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent 1283b146
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1078,7 +1078,7 @@ static void cnss_wlfw_request_mem_ind_cb(struct qmi_handle *qmi_wlfw,

	plat_priv->fw_mem_seg_len = ind_msg->mem_seg_len;
	for (i = 0; i < plat_priv->fw_mem_seg_len; i++) {
		cnss_pr_dbg("FW requests for memory, size: 0x%zx, type: %u\n",
		cnss_pr_dbg("FW requests for memory, size: 0x%x, type: %u\n",
			    ind_msg->mem_seg[i].size, ind_msg->mem_seg[i].type);
		plat_priv->fw_mem[i].type = ind_msg->mem_seg[i].type;
		plat_priv->fw_mem[i].size = ind_msg->mem_seg[i].size;