qcacld-3.0: Reduce the log spam in wlan_hdd_memdump.c

Move the logs to appropriate log levels to reduce
the log spam in wlan_hdd_memdump.c

Change-Id: I96a36868dbb68eb5f7b78af2ef404af56443e7f2
CRs-Fixed: 2014745
diff --git a/core/hdd/src/wlan_hdd_memdump.c b/core/hdd/src/wlan_hdd_memdump.c
index a64f806..5987610 100644
--- a/core/hdd/src/wlan_hdd_memdump.c
+++ b/core/hdd/src/wlan_hdd_memdump.c
@@ -77,7 +77,7 @@
 
 
 	if (!hdd_ctx->fw_dump_loc) {
-		hdd_notice("Memory dump already freed");
+		hdd_debug("Memory dump already freed");
 		return;
 	}
 
@@ -125,7 +125,7 @@
 	if (!dump_rsp->dump_complete ||
 	    context->request_id != dump_rsp->request_id) {
 		spin_unlock(&hdd_context_lock);
-		hdd_err("Error @ request_id: %d response_id: %d status: %d",
+		hdd_err("request_id: %d response_id: %d status: %d",
 		       context->request_id, dump_rsp->request_id,
 		       dump_rsp->dump_complete);
 		return;
@@ -167,7 +167,7 @@
 	}
 
 	cfg80211_vendor_cmd_reply(skb);
-	hdd_notice("Memdump event sent successfully to user space");
+	hdd_debug("Memdump event sent successfully to user space");
 	return 0;
 
 nla_put_failure:
@@ -209,7 +209,6 @@
 	if (status)
 		return status;
 
-
 	qdf_ctx = cds_get_context(QDF_MODULE_ID_QDF_DEVICE);
 	if (!qdf_ctx) {
 		hdd_err("QDF context is NULL");
@@ -252,7 +251,7 @@
 	fw_mem_dump_req.request_id = FW_MEM_DUMP_REQ_ID;
 	fw_mem_dump_req.num_seg = FW_MEM_DUMP_NUM_SEG;
 
-	hdd_notice("request_id:%d num_seg:%d",
+	hdd_debug("request_id:%d num_seg:%d",
 		fw_mem_dump_req.request_id, fw_mem_dump_req.num_seg);
 	seg_req = (struct fw_dump_seg_req *) fw_mem_dump_req.segment;
 	for (loop = 0; loop < fw_mem_dump_req.num_seg; loop++) {
@@ -262,11 +261,11 @@
 		seg_req->seg_length = FW_MEM_DUMP_SIZE;
 		seg_req->dst_addr_lo = hdd_ctx->dump_loc_paddr;
 		seg_req->dst_addr_hi = 0;
-		hdd_notice("seg_number:%d", loop);
-		hdd_notice("seg_id:%d start_addr_lo:0x%x start_addr_hi:0x%x",
+		hdd_debug("seg_number:%d", loop);
+		hdd_debug("seg_id:%d start_addr_lo:0x%x start_addr_hi:0x%x",
 		    seg_req->seg_id, seg_req->seg_start_addr_lo,
 		    seg_req->seg_start_addr_hi);
-		hdd_notice("seg_length:%d dst_addr_lo:0x%x dst_addr_hi:0x%x",
+		hdd_debug("seg_length:%d dst_addr_lo:0x%x dst_addr_hi:0x%x",
 		    seg_req->seg_length, seg_req->dst_addr_lo,
 		    seg_req->dst_addr_hi);
 		seg_req++;
@@ -394,7 +393,7 @@
 
 	hdd_ctx = memdump_get_file_data(file);
 
-	hdd_notice("Read req for size:%zu pos:%llu", count, *pos);
+	hdd_debug("Read req for size:%zu pos:%llu", count, *pos);
 	status = wlan_hdd_validate_context(hdd_ctx);
 	if (status)
 		return status;
@@ -414,7 +413,7 @@
 		hdd_err("Invalid start offset for memdump read");
 		return -EINVAL;
 	} else if (*pos >= FW_MEM_DUMP_SIZE || !count) {
-		hdd_err("No more data to copy");
+		hdd_debug("No more data to copy");
 		return 0;
 	} else if (count > FW_MEM_DUMP_SIZE - *pos) {
 		count = FW_MEM_DUMP_SIZE - *pos;
@@ -484,7 +483,7 @@
 	proc_dir = proc_mkdir(PROCFS_MEMDUMP_DIR, NULL);
 	if (proc_dir == NULL) {
 		remove_proc_entry(PROCFS_MEMDUMP_DIR, NULL);
-		pr_debug("Error: Could not initialize /proc/%s\n",
+		pr_debug("Could not initialize /proc/%s\n",
 			 PROCFS_MEMDUMP_DIR);
 		return -ENOMEM;
 	}
@@ -494,7 +493,7 @@
 				     &memdump_fops, hdd_ctx);
 	if (proc_file == NULL) {
 		remove_proc_entry(PROCFS_MEMDUMP_NAME, proc_dir);
-		pr_debug("Error: Could not initialize /proc/%s\n",
+		pr_debug("Could not initialize /proc/%s\n",
 			  PROCFS_MEMDUMP_NAME);
 		return -ENOMEM;
 	}
@@ -595,7 +594,7 @@
 	}
 
 	if (!hdd_ctx->memdump_init_done) {
-		hdd_err("MemDump not initialized");
+		hdd_warn("MemDump not initialized");
 		return;
 	}
 	hdd_ctx->memdump_init_done = false;
@@ -686,7 +685,7 @@
 
 	hdd_ctx = memdump_get_file_data(file);
 
-	hdd_notice("Read req for size:%zu pos:%llu", count, *pos);
+	hdd_debug("Read req for size:%zu pos:%llu", count, *pos);
 	status = wlan_hdd_validate_context(hdd_ctx);
 	if (status != 0)
 		return -EINVAL;
@@ -699,7 +698,7 @@
 	} else if (!count || (hdd_ctx->driver_dump_size &&
 				(*pos >= hdd_ctx->driver_dump_size))) {
 		mutex_unlock(&hdd_ctx->memdump_lock);
-		hdd_err("No more data to copy");
+		hdd_debug("No more data to copy");
 		return 0;
 	} else if ((*pos == 0) || (hdd_ctx->driver_dump_mem == NULL)) {
 		/*
@@ -727,7 +726,7 @@
 		if (qdf_status != QDF_STATUS_SUCCESS)
 			hdd_err("Error in dump driver information, status %d",
 				qdf_status);
-		hdd_notice("driver_dump_size: %d",
+		hdd_debug("driver_dump_size: %d",
 					hdd_ctx->driver_dump_size);
 	}
 
@@ -787,7 +786,7 @@
 
 	proc_dir_driver = proc_mkdir(PROCFS_DRIVER_DUMP_DIR, NULL);
 	if (proc_dir_driver == NULL) {
-		pr_debug("Error: Could not initialize /proc/%s\n",
+		pr_debug("Could not initialize /proc/%s\n",
 			 PROCFS_DRIVER_DUMP_DIR);
 		return -ENOMEM;
 	}
@@ -797,7 +796,7 @@
 				     &driver_dump_fops, hdd_ctx);
 	if (proc_file_driver == NULL) {
 		remove_proc_entry(PROCFS_DRIVER_DUMP_NAME, proc_dir_driver);
-		pr_debug("Error: Could not initialize /proc/%s\n",
+		pr_debug("Could not initialize /proc/%s\n",
 			  PROCFS_DRIVER_DUMP_NAME);
 		return -ENOMEM;
 	}