Commit f3c78e94 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

alpha: replace #include <asm/export.h> with #include <linux/export.h>



Commit ddb5cdba ("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: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent b154f642
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
 *	arch/alpha/lib/callback_srm.S
 */

#include <linux/export.h>
#include <asm/console.h>
#include <asm/export.h>

.text
#define HWRPB_CRB_OFFSET 0xc0
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
 *
 * Zero an entire page.
 */
#include <asm/export.h>
#include <linux/export.h>
	.text
	.align 4
	.global clear_page
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
 * a successful copy).  There is also some rather minor exception setup
 * stuff.
 */
#include <asm/export.h>
#include <linux/export.h>

/* Allow an exception for an insn; exit if we get one.  */
#define EX(x,y...)			\
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
 *
 * Copy an entire page.
 */
#include <asm/export.h>
#include <linux/export.h>
	.text
	.align 4
	.global copy_page
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
 * exception setup stuff..
 */

#include <asm/export.h>
#include <linux/export.h>

/* Allow an exception for an insn; exit if we get one.  */
#define EXI(x,y...)			\
Loading