Browse Source

qcacld-3.0: Change logging priority for offload logs

Currently in the driver, the checks performed before NS and ARP offload
to determine whether they are necessary or not, resulted in prints to
the kernel logs.

Change the above logging level to debug.

Change-Id: Ib039ee51d2763ab2a1340d2a4b17a85c530f68fa
CRs-Fixed: 2578328
Sourav Mohapatra 5 years ago
parent
commit
b1c97cc483
1 changed files with 4 additions and 4 deletions
  1. 4 4
      core/hdd/src/wlan_hdd_power.c

+ 4 - 4
core/hdd/src/wlan_hdd_power.c

@@ -407,7 +407,7 @@ void hdd_enable_ns_offload(struct hdd_adapter *adapter,
 	/* check if offload cache and send is required or not */
 	status = ucfg_pmo_ns_offload_check(psoc, trigger, adapter->vdev_id);
 	if (QDF_IS_STATUS_ERROR(status)) {
-		hdd_info("NS offload is not required");
+		hdd_debug("NS offload is not required");
 		goto free_req;
 	}
 
@@ -465,7 +465,7 @@ void hdd_disable_ns_offload(struct hdd_adapter *adapter,
 	status = ucfg_pmo_ns_offload_check(hdd_ctx->psoc, trigger,
 					   adapter->vdev_id);
 	if (status != QDF_STATUS_SUCCESS) {
-		hdd_err("Flushing of NS offload not required");
+		hdd_debug("Flushing of NS offload not required");
 		goto out;
 	}
 
@@ -957,7 +957,7 @@ void hdd_enable_arp_offload(struct hdd_adapter *adapter,
 
 	status = ucfg_pmo_check_arp_offload(psoc, trigger, adapter->vdev_id);
 	if (QDF_IS_STATUS_ERROR(status)) {
-		hdd_info("ARP offload not required");
+		hdd_debug("ARP offload not required");
 		goto free_req;
 	}
 
@@ -1002,7 +1002,7 @@ void hdd_disable_arp_offload(struct hdd_adapter *adapter,
 	status = ucfg_pmo_check_arp_offload(hdd_ctx->psoc, trigger,
 					    adapter->vdev_id);
 	if (status != QDF_STATUS_SUCCESS) {
-		hdd_err("Flushing of ARP offload not required");
+		hdd_debug("Flushing of ARP offload not required");
 		goto out;
 	}