Browse Source

qcacld-3.0: SYS: Reduce the log spam in kmsg

Move the logs to appropriate log levels to reduce
the log spam in kmsg.

Change-Id: Iada52b9a7f2da0dd251c393c73551b41420f784e
CRs-Fixed: 2014745
Srinivas Girigowda 8 years ago
parent
commit
f6fddceba7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      core/mac/src/sys/legacy/src/platform/src/sys_wrapper.c

+ 3 - 3
core/mac/src/sys/legacy/src/platform/src/sys_wrapper.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -142,7 +142,7 @@ uint32_t tx_timer_activate(TX_TIMER *timer_ptr)
 		return TX_SUCCESS;
 	} else if (QDF_STATUS_E_ALREADY == status) {
 		/* starting timer fails because timer is already started; this is okay */
-		QDF_TRACE(QDF_MODULE_ID_SYS, QDF_TRACE_LEVEL_INFO,
+		QDF_TRACE(QDF_MODULE_ID_SYS, QDF_TRACE_LEVEL_DEBUG,
 			  "Timer %s is already running\n", TIMER_NAME);
 		return TX_SUCCESS;
 	} else {
@@ -336,7 +336,7 @@ uint32_t tx_timer_create_intern_debug(void *pMacGlobal,
 	}
 
 	if (0 != rescheduleTimeInTicks) {
-		QDF_TRACE(QDF_MODULE_ID_SYS, QDF_TRACE_LEVEL_INFO,
+		QDF_TRACE(QDF_MODULE_ID_SYS, QDF_TRACE_LEVEL_DEBUG,
 			  "Creating periodic timer for %s\n", TIMER_NAME);
 	}
 	/* Activate this timer if required */