diff options
author | Alexey Dobriyan <[email protected]> | 2019-01-03 15:26:37 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2019-01-04 13:13:46 -0800 |
commit | e6310f0fb5cd3f65244dbdef2fb264859891c7ec (patch) | |
tree | f3cbe807e5c9625463138ce3a99b55ba553002c7 | |
parent | 300133d372b7b541c7e7c5e8d63ea5439f9865b6 (diff) |
include/linux/printk.h: drop silly "static inline asmlinkage" from dump_stack()
Empty function will be inlined so asmlinkage doesn't do anything.
Link: http://lkml.kernel.org/r/20181124093530.GE10969@avx2
Signed-off-by: Alexey Dobriyan <[email protected]>
Reviewed-by: Andrew Morton <[email protected]>
Acked-by: Joey Pabalinas <[email protected]>
Cc: Petr Mladek <[email protected]>
Cc: Sergey Senozhatsky <[email protected]>
Cc: Steven Rostedt <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | include/linux/printk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/printk.h b/include/linux/printk.h index 55aa96975fa2..77740a506ebb 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h @@ -264,7 +264,7 @@ static inline void show_regs_print_info(const char *log_lvl) { } -static inline asmlinkage void dump_stack(void) +static inline void dump_stack(void) { } |