diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-05 17:32:44 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-28 03:15:23 +0200 |
commit | 45caf470077ae6b02da6d5eaee94003ee1543ca3 (patch) | |
tree | a01860422d8a9b416ac3d28999506d5afb08ab63 /arch/x86/include/asm/sections.h | |
parent | remove stray include of asm/uaccess.h from cacheflush.h (diff) | |
download | linux-45caf470077ae6b02da6d5eaee94003ee1543ca3.tar.xz linux-45caf470077ae6b02da6d5eaee94003ee1543ca3.zip |
x86: separate extable.h, switch sections.h to it
drivers/platform/x86/dell-smo8800.c is touched due to the following obscenity:
drivers/platform/x86/dell-smo8800.c ->
linux/interrupt.h ->
linux/hardirq.h ->
asm/hardirq.h ->
linux/irq.h ->
asm/hw_irq.h ->
asm/sections.h ->
asm/uaccess.h
is the only chain of includes pulling asm/uaccess.h there.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/include/asm/sections.h')
-rw-r--r-- | arch/x86/include/asm/sections.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/sections.h b/arch/x86/include/asm/sections.h index 13b6cdd0af57..2f75f30cb2f6 100644 --- a/arch/x86/include/asm/sections.h +++ b/arch/x86/include/asm/sections.h @@ -2,7 +2,7 @@ #define _ASM_X86_SECTIONS_H #include <asm-generic/sections.h> -#include <asm/uaccess.h> +#include <asm/extable.h> extern char __brk_base[], __brk_limit[]; extern struct exception_table_entry __stop___ex_table[]; |