diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-20 02:33:48 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-08-22 12:12:25 +0300 |
commit | 4cdb71b6ba3283fb2b7eaccc333f8f2c5b81797b (patch) | |
tree | a64d3b500b0d3ef5dd01475589c96c94a5cd7619 /arch/sparc/lib/clear_page.S | |
parent | 1fdd729019f96d0a6b532be1a8bf7735c59305d8 (diff) | |
download | linux-4cdb71b6ba3283fb2b7eaccc333f8f2c5b81797b.tar.xz |
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/clear_page.S')
-rw-r--r-- | arch/sparc/lib/clear_page.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/lib/clear_page.S b/arch/sparc/lib/clear_page.S index 302d3454a994..e63458194f5a 100644 --- a/arch/sparc/lib/clear_page.S +++ b/arch/sparc/lib/clear_page.S @@ -5,13 +5,13 @@ * Copyright (C) 1997 Jakub Jelinek (jakub@redhat.com) */ +#include <linux/export.h> #include <linux/pgtable.h> #include <asm/visasm.h> #include <asm/thread_info.h> #include <asm/page.h> #include <asm/spitfire.h> #include <asm/head.h> -#include <asm/export.h> /* What we used to do was lock a TLB entry into a specific * TLB slot, clear the page with interrupts disabled, then |