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

ia64: 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 ee8aff7f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@
 *	pNonSys:	!pSys
 */


#include <linux/export.h>
#include <linux/pgtable.h>
#include <asm/asmmacro.h>
#include <asm/cache.h>
@@ -49,7 +49,6 @@
#include <asm/thread_info.h>
#include <asm/unistd.h>
#include <asm/ftrace.h>
#include <asm/export.h>

#include "minstate.h"

+1 −1
Original line number Diff line number Diff line
@@ -34,9 +34,9 @@
#define PSR_BITS_TO_SET							\
	(IA64_PSR_BN)

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

/*
 * Inputs:
+1 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
 *   Support for CPU Hotplug
 */


#include <linux/export.h>
#include <linux/pgtable.h>
#include <asm/asmmacro.h>
#include <asm/fpu.h>
@@ -33,7 +33,6 @@
#include <asm/mca_asm.h>
#include <linux/init.h>
#include <linux/linkage.h>
#include <asm/export.h>

#ifdef CONFIG_HOTPLUG_CPU
#define SAL_PSR_BITS_TO_SET				\
+1 −2
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@
 * Table is based upon EAS2.6 (Oct 1999)
 */


#include <linux/export.h>
#include <linux/pgtable.h>
#include <asm/asmmacro.h>
#include <asm/break.h>
@@ -58,7 +58,6 @@
#include <asm/thread_info.h>
#include <asm/unistd.h>
#include <asm/errno.h>
#include <asm/export.h>

#if 0
# define PSR_DEFAULT_BITS	psr.ac
+1 −1
Original line number Diff line number Diff line
@@ -13,9 +13,9 @@
 * 05/24/2000 eranian Added support for physical mode static calls
 */

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

	.data
pal_entry_point:
Loading