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:

committed by
Madan Koyyalamudi

parent
b24581bf28
commit
cfe8cda786
@@ -351,11 +351,11 @@ static inline void
|
||||
log_to_console(QDF_TRACE_LEVEL level, const char *timestamp, const char *msg)
|
||||
{
|
||||
if (qdf_detected_excessive_logging()) {
|
||||
qdf_rl_print_supressed_inc();
|
||||
qdf_rl_print_suppressed_inc();
|
||||
return;
|
||||
}
|
||||
|
||||
qdf_rl_print_supressed_log();
|
||||
qdf_rl_print_suppressed_log();
|
||||
pr_err("%s %s\n", timestamp, msg);
|
||||
}
|
||||
#else
|
||||
|
Reference in New Issue
Block a user