Ver Fonte

qcacld-3.0: Remove dsc psoc op enter/exit logging due to excessive logging

Enter and exit prints are called everytime, causing excessive logging.
To reduce the amount of logs printed, remove the enter and exit print
statements from dsc _dsc_psoc_op_start and _dsc_psoc_op_stop.

Change-Id: Iec53285d0c39243edd6577c57c9d0b15769e1230
CRs-Fixed: 2491091
Alan Chen há 5 anos atrás
pai
commit
a75cc71898
1 ficheiros alterados com 0 adições e 4 exclusões
  1. 0 4
      components/dsc/src/wlan_dsc_psoc.c

+ 0 - 4
components/dsc/src/wlan_dsc_psoc.c

@@ -315,9 +315,7 @@ QDF_STATUS _dsc_psoc_op_start(struct dsc_psoc *psoc, const char *func)
 {
 	QDF_STATUS status;
 
-	dsc_enter_str(func);
 	status = __dsc_psoc_op_start(psoc, func);
-	dsc_exit_status(status);
 
 	return status;
 }
@@ -338,9 +336,7 @@ static void __dsc_psoc_op_stop(struct dsc_psoc *psoc, const char *func)
 
 void _dsc_psoc_op_stop(struct dsc_psoc *psoc, const char *func)
 {
-	dsc_enter_str(func);
 	__dsc_psoc_op_stop(psoc, func);
-	dsc_exit();
 }
 
 static void __dsc_psoc_wait_for_ops(struct dsc_psoc *psoc)