Przeglądaj źródła

qcacmn: Add magic string for debug enhancement

Add magic string in the driver to automate the
stability analysis.

Change-Id: Ie98e4abbce04e9528c57158754c27ce76332b283
CRs-Fixed: 2223765
Kabilan Kannan 7 lat temu
rodzic
commit
aa6cfd9f97
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      scheduler/src/scheduler_api.c

+ 2 - 2
scheduler/src/scheduler_api.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014-2017 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -86,7 +86,7 @@ static inline void scheduler_watchdog_notify(struct scheduler_ctx *sched)
 	if (sched->watchdog_callback)
 		qdf_sprint_symbol(symbol, sched->watchdog_callback);
 
-	sched_err("Callback %s (type 0x%x) exceeded its allotted time of %ds",
+	sched_err("WLAN_BUG_RCA: Callback %s (type 0x%x) exceeded its allotted time of %ds",
 		  sched->watchdog_callback ? symbol : "<null>",
 		  sched->watchdog_msg_type, SCHEDULER_WATCHDOG_TIMEOUT / 1000);
 }