diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-20 08:33:48 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-22 18:12:25 +0900 |
commit | 4cdb71b6ba3283fb2b7eaccc333f8f2c5b81797b (patch) | |
tree | a64d3b500b0d3ef5dd01475589c96c94a5cd7619 /arch/sparc/lib/mcount.S | |
parent | 1fdd729019f96d0a6b532be1a8bf7735c59305d8 (diff) | |
download | linux-4cdb71b6ba3283fb2b7eaccc333f8f2c5b81797b.tar.gz linux-4cdb71b6ba3283fb2b7eaccc333f8f2c5b81797b.tar.bz2 linux-4cdb71b6ba3283fb2b7eaccc333f8f2c5b81797b.zip |
sparc: 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>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch/sparc/lib/mcount.S')
-rw-r--r-- | arch/sparc/lib/mcount.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/lib/mcount.S b/arch/sparc/lib/mcount.S index deba6fa0bc78..f7f7910eb41e 100644 --- a/arch/sparc/lib/mcount.S +++ b/arch/sparc/lib/mcount.S @@ -6,8 +6,8 @@ * This can also be tweaked for kernel stack overflow detection. */ +#include <linux/export.h> #include <linux/linkage.h> -#include <asm/export.h> /* * This is the main variant and is called by C code. GCC's -pg option |