Quellcode durchsuchen

qcacmn: Reduce the setup info console logging from hif and htc

Excessive info logging on to console is leading watchdog. Reduce info
logging

Change-Id: I0e098c95bfffb1e8d63a95226552e400cd7f610c
CRs-Fixed: 2287777
Dustin Brown vor 6 Jahren
Ursprung
Commit
1ec1510b48
2 geänderte Dateien mit 7 neuen und 12 gelöschten Zeilen
  1. 2 4
      hif/src/ce/ce_main.c
  2. 5 8
      htc/htc_services.c

+ 2 - 4
hif/src/ce/ce_main.c

@@ -3358,11 +3358,9 @@ int hif_map_service_to_pipe(struct hif_opaque_softc *hif_hdl, uint16_t svc_id,
 		}
 	}
 	if (ul_updated == false)
-		HIF_INFO("%s: ul pipe is NOT updated for service %d",
-			 __func__, svc_id);
+		HIF_DBG("ul pipe is NOT updated for service %d", svc_id);
 	if (dl_updated == false)
-		HIF_INFO("%s: dl pipe is NOT updated for service %d",
-			 __func__, svc_id);
+		HIF_DBG("dl pipe is NOT updated for service %d", svc_id);
 
 	return status;
 }

+ 5 - 8
htc/htc_services.c

@@ -375,17 +375,14 @@ QDF_STATUS htc_connect_service(HTC_HANDLE HTCHandle,
 				QDF_TIMER_TYPE_SW);
 		}
 
-		AR_DEBUG_PRINTF(ATH_DEBUG_INFO,
-				("SVC:0x%4.4X, ULpipe:%d DLpipe:%d id:%d Ready",
-				 pEndpoint->service_id, pEndpoint->UL_PipeID,
-				 pEndpoint->DL_PipeID, pEndpoint->Id));
+		HTC_TRACE("SVC:0x%4.4X, ULpipe:%d DLpipe:%d id:%d Ready",
+			  pEndpoint->service_id, pEndpoint->UL_PipeID,
+			  pEndpoint->DL_PipeID, pEndpoint->Id);
 
 		if (disableCreditFlowCtrl && pEndpoint->TxCreditFlowEnabled) {
 			pEndpoint->TxCreditFlowEnabled = false;
-			AR_DEBUG_PRINTF(ATH_DEBUG_INFO,
-					("SVC:0x%4.4X ep:%d TX flow control disabled",
-					 pEndpoint->service_id,
-					 assignedEndpoint));
+			HTC_TRACE("SVC:0x%4.4X ep:%d TX flow control disabled",
+				  pEndpoint->service_id, assignedEndpoint);
 		}
 
 	} while (false);