diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2019-03-07 19:27:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-03-07 21:32:00 -0500 |
commit | f008043bd3b5ca7f2c65dbdad8ea6df0a6f134f3 (patch) | |
tree | 4d62ff6366cafdac3fb5a4dd3f9d175036fdacc5 /lib/dynamic_debug.c | |
parent | 4573fe15437c909d5a06a01750125e2a06829370 (diff) |
dynamic_debug: remove unused EXPORT_SYMBOLs
The only caller of ddebug_{add,remove}_module outside dynamic_debug.c is
kernel/module.c, which is obviously not itself modular (though it would
be an interesting exercise to make that happen...). I also fail to see
how these interfaces can be used by modules, in-tree or not.
Link: http://lkml.kernel.org/r/20190212214150.4807-8-linux@rasmusvillemoes.dk
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Acked-by: Jason Baron <jbaron@akamai.com>
Cc: David Sterba <dsterba@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J . Wysocki" <rafael.j.wysocki@intel.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/dynamic_debug.c')
-rw-r--r-- | lib/dynamic_debug.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 214828c65625..7b76f43edaef 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c | |||
@@ -868,7 +868,6 @@ int ddebug_add_module(struct _ddebug *tab, unsigned int n, | |||
868 | vpr_info("%u debug prints in module %s\n", n, dt->mod_name); | 868 | vpr_info("%u debug prints in module %s\n", n, dt->mod_name); |
869 | return 0; | 869 | return 0; |
870 | } | 870 | } |
871 | EXPORT_SYMBOL_GPL(ddebug_add_module); | ||
872 | 871 | ||
873 | /* helper for ddebug_dyndbg_(boot|module)_param_cb */ | 872 | /* helper for ddebug_dyndbg_(boot|module)_param_cb */ |
874 | static int ddebug_dyndbg_param_cb(char *param, char *val, | 873 | static int ddebug_dyndbg_param_cb(char *param, char *val, |
@@ -938,7 +937,6 @@ int ddebug_remove_module(const char *mod_name) | |||
938 | mutex_unlock(&ddebug_lock); | 937 | mutex_unlock(&ddebug_lock); |
939 | return ret; | 938 | return ret; |
940 | } | 939 | } |
941 | EXPORT_SYMBOL_GPL(ddebug_remove_module); | ||
942 | 940 | ||
943 | static void ddebug_remove_all_tables(void) | 941 | static void ddebug_remove_all_tables(void) |
944 | { | 942 | { |