mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
72f40a2823
There is no reason to have this as a seperate function for a single caller. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20210210002513.382806685@linutronix.de
11 lines
216 B
C
11 lines
216 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_X86_SOFTIRQ_STACK_H
|
|
#define _ASM_X86_SOFTIRQ_STACK_H
|
|
|
|
#ifdef CONFIG_X86_64
|
|
# include <asm/irq_stack.h>
|
|
#else
|
|
# include <asm-generic/softirq_stack.h>
|
|
#endif
|
|
|
|
#endif
|