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/lib/clear_page.S | |
parent | ee8aff7fbea3ee4b7352b6cf8202d6619072a28d (diff) | |
download | lwn-ab03e604bb91819cb0dcd0decc64f6919c2c7039.tar.gz lwn-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/lib/clear_page.S')
-rw-r--r-- | arch/ia64/lib/clear_page.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/lib/clear_page.S b/arch/ia64/lib/clear_page.S index 65b75085c8f4..ba0dd2538fa5 100644 --- a/arch/ia64/lib/clear_page.S +++ b/arch/ia64/lib/clear_page.S @@ -10,9 +10,9 @@ * 3/08/02 davidm Some more tweaking */ +#include <linux/export.h> #include <asm/asmmacro.h> #include <asm/page.h> -#include <asm/export.h> #ifdef CONFIG_ITANIUM # define L3_LINE_SIZE 64 // Itanium L3 line size |