aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/dynamic_debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/dynamic_debug.h')
-rw-r--r--include/linux/dynamic_debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/dynamic_debug.h b/include/linux/dynamic_debug.h
index 4697e4b59d6f..c18257b0fa72 100644
--- a/include/linux/dynamic_debug.h
+++ b/include/linux/dynamic_debug.h
@@ -109,7 +109,8 @@ static inline int ddebug_dyndbg_module_param_cb(char *param, char *val,
109 const char *modname) 109 const char *modname)
110{ 110{
111 if (strstr(param, "dyndbg")) { 111 if (strstr(param, "dyndbg")) {
112 pr_warn("dyndbg supported only in " 112 /* avoid pr_warn(), which wants pr_fmt() fully defined */
113 printk(KERN_WARNING "dyndbg param is supported only in "
113 "CONFIG_DYNAMIC_DEBUG builds\n"); 114 "CONFIG_DYNAMIC_DEBUG builds\n");
114 return 0; /* allow and ignore */ 115 return 0; /* allow and ignore */
115 } 116 }