59cf47e7df31 dyndbg: export ddebug_exec_queries elicited a sparse complaint. Add declaration to header file.
I skipped the kerneldoc for now, unsure where it should go. Ive seen it in .c files, Im leaning that way. Signed-off-by: Jim Cromie <[email protected]> --- include/linux/dynamic_debug.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/dynamic_debug.h b/include/linux/dynamic_debug.h index aa9ff9e1c0b3..61eb80c726bf 100644 --- a/include/linux/dynamic_debug.h +++ b/include/linux/dynamic_debug.h @@ -6,6 +6,9 @@ #include <linux/jump_label.h> #endif +/* exported for module authors to exercise >control */ +int ddebug_exec_queries(char *query, const char *modname); + /* * An instance of this structure is created in a special * ELF section at every dynamic debug callsite. At runtime, -- 2.26.2

