diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-20 01:33:50 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-22 11:12:46 +0200 |
commit | ab03e604bb91819cb0dcd0decc64f6919c2c7039 (patch) | |
tree | 326d8d227d5d45ee6743071baf923867f31381f3 /arch/ia64/lib/memcpy_mck.S | |
parent | sparc: remove <asm/export.h> (diff) | |
download | linux-ab03e604bb91819cb0dcd0decc64f6919c2c7039.tar.xz 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/lib/memcpy_mck.S')
-rw-r--r-- | arch/ia64/lib/memcpy_mck.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/lib/memcpy_mck.S b/arch/ia64/lib/memcpy_mck.S index cc4e6ac914b6..c0d4362217ae 100644 --- a/arch/ia64/lib/memcpy_mck.S +++ b/arch/ia64/lib/memcpy_mck.S @@ -14,9 +14,9 @@ * Copyright (C) 2002 Intel Corp. * Copyright (C) 2002 Ken Chen <kenneth.w.chen@intel.com> */ +#include <linux/export.h> #include <asm/asmmacro.h> #include <asm/page.h> -#include <asm/export.h> #define EK(y...) EX(y) |