Browse Source

cnss2: Move genl related data to ipc long context

Fw reports binary info to host, host will send to cnss-daemon by
nl80211 message, move log in this path to ipc long context.

Change-Id: Ie458f26789e765f7edf3188ed2897e7082cdb52b
CRs-Fixed: 3427156
Kai Liu 2 years ago
parent
commit
597155d64e
1 changed files with 6 additions and 3 deletions
  1. 6 3
      cnss2/genl.c

+ 6 - 3
cnss2/genl.c

@@ -1,5 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0-only
-/* Copyright (c) 2019, The Linux Foundation. All rights reserved. */
+/*
+ * Copyright (c) 2019, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ */
 
 #define pr_fmt(fmt) "cnss_genl: " fmt
 
@@ -92,7 +95,7 @@ static int cnss_genl_send_data(u8 type, char *file_name, u32 total_size,
 	int ret = 0;
 	char filename[CNSS_GENL_STR_LEN_MAX + 1];
 
-	cnss_pr_dbg("type: %u, file_name %s, total_size: %x, seg_id %u, end %u, data_len %u\n",
+	cnss_pr_vdbg("type: %u, file_name %s, total_size: %x, seg_id %u, end %u, data_len %u\n",
 		    type, file_name, total_size, seg_id, end, data_len);
 
 	if (!file_name)
@@ -164,7 +167,7 @@ int cnss_genl_send_msg(void *buff, u8 type, char *file_name, u32 total_size)
 	u8 end = 0;
 	u8 retry;
 
-	cnss_pr_dbg("type: %u, total_size: %x\n", type, total_size);
+	cnss_pr_vdbg("type: %u, total_size: %x\n", type, total_size);
 
 	while (remaining) {
 		if (remaining > CNSS_GENL_DATA_LEN_MAX) {