qcacmn: Use renamed QDF suppressed logging APIs

Several QDF suppressed logging APIs were originally named with a
misspelling of "suppressed." New correctly-spelled functions are
available, so call those instead.

Change-Id: I4fcd506b39cedd6f094f93ee900cf9ce8be759c1
CRs-Fixed: 3313686
This commit is contained in:
Jeff Johnson
2022-10-14 16:56:36 -07:00
committed by Madan Koyyalamudi
parent b24581bf28
commit cfe8cda786

View File

@@ -351,11 +351,11 @@ static inline void
log_to_console(QDF_TRACE_LEVEL level, const char *timestamp, const char *msg) log_to_console(QDF_TRACE_LEVEL level, const char *timestamp, const char *msg)
{ {
if (qdf_detected_excessive_logging()) { if (qdf_detected_excessive_logging()) {
qdf_rl_print_supressed_inc(); qdf_rl_print_suppressed_inc();
return; return;
} }
qdf_rl_print_supressed_log(); qdf_rl_print_suppressed_log();
pr_err("%s %s\n", timestamp, msg); pr_err("%s %s\n", timestamp, msg);
} }
#else #else