浏览代码

qcacmn: Fix compilation errors in DP_PRINT

Fix compilation error in DP_PRINT which is
seen when compiled for lithium datapath.

CRs-Fixed: 2567068
Change-Id: I4bb7bb14a2e521645be6e2677a44a78fa79fcb0b
Rakesh Pillai 5 年之前
父节点
当前提交
3f13c071b9
共有 2 个文件被更改,包括 4 次插入2 次删除
  1. 2 1
      dp/wifi3.0/dp_main.c
  2. 2 1
      dp/wifi3.0/dp_rx_defrag.c

+ 2 - 1
dp/wifi3.0/dp_main.c

@@ -1051,7 +1051,8 @@ void dp_print_ast_stats(struct dp_soc *soc)
 					    ase->ast_idx,
 					    ase->ast_hash_value,
 					    ase->delete_in_progress,
-					    ase->pdev_id);
+					    ase->pdev_id,
+					    vdev->vdev_id);
 				}
 			}
 		}

+ 2 - 1
dp/wifi3.0/dp_rx_defrag.c

@@ -1422,7 +1422,8 @@ dp_rx_defrag_store_fragment(struct dp_soc *soc,
 	if (qdf_nbuf_len(frag) > 0) {
 		dp_info("Dropping unexpected packet with skb_len: %d,"
 			"data len: %d, cookie: %d",
-			qdf_nbuf_len(frag), frag->data_len, rx_desc->cookie);
+			(uint32_t)qdf_nbuf_len(frag), frag->data_len,
+			rx_desc->cookie);
 		DP_STATS_INC(soc, rx.rx_frag_err_len_error, 1);
 		goto discard_frag;
 	}