diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-20 08:33:50 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-22 18:12:46 +0900 |
commit | ab03e604bb91819cb0dcd0decc64f6919c2c7039 (patch) | |
tree | 326d8d227d5d45ee6743071baf923867f31381f3 /arch/ia64/kernel | |
parent | ee8aff7fbea3ee4b7352b6cf8202d6619072a28d (diff) | |
download | linux-ab03e604bb91819cb0dcd0decc64f6919c2c7039.tar.gz linux-ab03e604bb91819cb0dcd0decc64f6919c2c7039.tar.bz2 linux-ab03e604bb91819cb0dcd0decc64f6919c2c7039.zip |
ia64: replace #include <asm/export.h> with #include <linux/export.h>
Commit ddb5cdbafaaa ("kbuild: generate KSYMTAB entries by modpost")
deprecated <asm/export.h>, which is now a wrapper of <linux/export.h>.
Replace #include <asm/export.h> with #include <linux/export.h>.
After all the <asm/export.h> lines are converted, <asm/export.h> and
<asm-generic/export.h> will be removed.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r-- | arch/ia64/kernel/entry.S | 3 | ||||
-rw-r--r-- | arch/ia64/kernel/esi_stub.S | 2 | ||||
-rw-r--r-- | arch/ia64/kernel/head.S | 3 | ||||
-rw-r--r-- | arch/ia64/kernel/ivt.S | 3 | ||||
-rw-r--r-- | arch/ia64/kernel/pal.S | 2 |
5 files changed, 5 insertions, 8 deletions
diff --git a/arch/ia64/kernel/entry.S b/arch/ia64/kernel/entry.S index 5eba3fb2e311..ac06d44b9b27 100644 --- a/arch/ia64/kernel/entry.S +++ b/arch/ia64/kernel/entry.S @@ -37,7 +37,7 @@ * pNonSys: !pSys */ - +#include <linux/export.h> #include <linux/pgtable.h> #include <asm/asmmacro.h> #include <asm/cache.h> @@ -49,7 +49,6 @@ #include <asm/thread_info.h> #include <asm/unistd.h> #include <asm/ftrace.h> -#include <asm/export.h> #include "minstate.h" diff --git a/arch/ia64/kernel/esi_stub.S b/arch/ia64/kernel/esi_stub.S index 821e68d10598..9928c5b2957c 100644 --- a/arch/ia64/kernel/esi_stub.S +++ b/arch/ia64/kernel/esi_stub.S @@ -34,9 +34,9 @@ #define PSR_BITS_TO_SET \ (IA64_PSR_BN) +#include <linux/export.h> #include <asm/processor.h> #include <asm/asmmacro.h> -#include <asm/export.h> /* * Inputs: diff --git a/arch/ia64/kernel/head.S b/arch/ia64/kernel/head.S index c096500590e9..85c8a57da402 100644 --- a/arch/ia64/kernel/head.S +++ b/arch/ia64/kernel/head.S @@ -20,7 +20,7 @@ * Support for CPU Hotplug */ - +#include <linux/export.h> #include <linux/pgtable.h> #include <asm/asmmacro.h> #include <asm/fpu.h> @@ -33,7 +33,6 @@ #include <asm/mca_asm.h> #include <linux/init.h> #include <linux/linkage.h> -#include <asm/export.h> #ifdef CONFIG_HOTPLUG_CPU #define SAL_PSR_BITS_TO_SET \ diff --git a/arch/ia64/kernel/ivt.S b/arch/ia64/kernel/ivt.S index 7a418e324d30..da90c49df628 100644 --- a/arch/ia64/kernel/ivt.S +++ b/arch/ia64/kernel/ivt.S @@ -47,7 +47,7 @@ * Table is based upon EAS2.6 (Oct 1999) */ - +#include <linux/export.h> #include <linux/pgtable.h> #include <asm/asmmacro.h> #include <asm/break.h> @@ -58,7 +58,6 @@ #include <asm/thread_info.h> #include <asm/unistd.h> #include <asm/errno.h> -#include <asm/export.h> #if 0 # define PSR_DEFAULT_BITS psr.ac diff --git a/arch/ia64/kernel/pal.S b/arch/ia64/kernel/pal.S index 06d01a070aae..fb6db6966f70 100644 --- a/arch/ia64/kernel/pal.S +++ b/arch/ia64/kernel/pal.S @@ -13,9 +13,9 @@ * 05/24/2000 eranian Added support for physical mode static calls */ +#include <linux/export.h> #include <asm/asmmacro.h> #include <asm/processor.h> -#include <asm/export.h> .data pal_entry_point: |