diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2019-03-07 19:28:07 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-03-07 21:32:00 -0500 |
commit | 902f99a38bd1998166ceb9f26f68afca4b71c34b (patch) | |
tree | 9668d5409cff534b66fca45550592e8eddb5c8fd | |
parent | 6ad6e54abb5dc5cf0533c23f772dd51ede0c759a (diff) |
ACPI: remove unused __acpi_handle_debug macro
If CONFIG_DYNAMIC_DEBUG is not set, acpi_handle_debug directly invokes
acpi_handle_printk (if DEBUG) or does a no-printk (if !DEBUG). So this
macro is never used.
Link: http://lkml.kernel.org/r/20190212214150.4807-14-linux@rasmusvillemoes.dk
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Acked-by: Jason Baron <jbaron@akamai.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.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: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/acpi.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index c15a007f1790..3f381e892f7c 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -953,9 +953,6 @@ acpi_handle_printk(const char *level, void *handle, const char *fmt, ...) {} | |||
953 | #if defined(CONFIG_ACPI) && defined(CONFIG_DYNAMIC_DEBUG) | 953 | #if defined(CONFIG_ACPI) && defined(CONFIG_DYNAMIC_DEBUG) |
954 | __printf(3, 4) | 954 | __printf(3, 4) |
955 | void __acpi_handle_debug(struct _ddebug *descriptor, acpi_handle handle, const char *fmt, ...); | 955 | void __acpi_handle_debug(struct _ddebug *descriptor, acpi_handle handle, const char *fmt, ...); |
956 | #else | ||
957 | #define __acpi_handle_debug(descriptor, handle, fmt, ...) \ | ||
958 | acpi_handle_printk(KERN_DEBUG, handle, fmt, ##__VA_ARGS__); | ||
959 | #endif | 956 | #endif |
960 | 957 | ||
961 | /* | 958 | /* |