diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-11-27 00:10:45 +0900 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2023-12-05 14:25:30 +0000 |
commit | 8fd7588fd4eefe2e474b433f930eba99415ece9e (patch) | |
tree | 201ccee3b4a5e5a5ff8d8336c2d3b59eac371f1c /arch/arm64/include/asm/assembler.h | |
parent | a099bec7a81052a324d07c9be7c24dc92fbd8ad1 (diff) | |
download | linux-stable-8fd7588fd4eefe2e474b433f930eba99415ece9e.tar.gz linux-stable-8fd7588fd4eefe2e474b433f930eba99415ece9e.tar.bz2 linux-stable-8fd7588fd4eefe2e474b433f930eba99415ece9e.zip |
arm64: replace <asm-generic/export.h> with <linux/export.h>
Commit ddb5cdbafaaa ("kbuild: generate KSYMTAB entries by modpost")
deprecated <asm-generic/export.h>, which is now a wrapper of
<linux/export.h>.
Replace #include <asm-generic/export.h> with #include <linux/export.h>.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Link: https://lore.kernel.org/r/20231126151045.1556686-1-masahiroy@kernel.org
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/include/asm/assembler.h')
-rw-r--r-- | arch/arm64/include/asm/assembler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/assembler.h b/arch/arm64/include/asm/assembler.h index 376a980f2bad..7b1975bf4b90 100644 --- a/arch/arm64/include/asm/assembler.h +++ b/arch/arm64/include/asm/assembler.h @@ -12,7 +12,7 @@ #ifndef __ASM_ASSEMBLER_H #define __ASM_ASSEMBLER_H -#include <asm-generic/export.h> +#include <linux/export.h> #include <asm/alternative.h> #include <asm/asm-bug.h> |