From a75cc71898fbd8547bb0fe9c7fd05b8a07e95cf4 Mon Sep 17 00:00:00 2001 From: Alan Chen Date: Tue, 16 Jul 2019 13:53:09 -0700 Subject: [PATCH] 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 --- components/dsc/src/wlan_dsc_psoc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/dsc/src/wlan_dsc_psoc.c b/components/dsc/src/wlan_dsc_psoc.c index f0cdc3a6ca..a5248c4d8c 100644 --- a/components/dsc/src/wlan_dsc_psoc.c +++ b/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)