Skip to content

Commit f3c78e9

Browse files
committed
alpha: replace #include <asm/export.h> with #include <linux/export.h>
Commit ddb5cdb ("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>
1 parent b154f64 commit f3c78e9

32 files changed

+32
-32
lines changed

arch/alpha/lib/callback_srm.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* arch/alpha/lib/callback_srm.S
44
*/
55

6+
#include <linux/export.h>
67
#include <asm/console.h>
7-
#include <asm/export.h>
88

99
.text
1010
#define HWRPB_CRB_OFFSET 0xc0

arch/alpha/lib/clear_page.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Zero an entire page.
66
*/
7-
#include <asm/export.h>
7+
#include <linux/export.h>
88
.text
99
.align 4
1010
.global clear_page

arch/alpha/lib/clear_user.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* a successful copy). There is also some rather minor exception setup
1111
* stuff.
1212
*/
13-
#include <asm/export.h>
13+
#include <linux/export.h>
1414

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

arch/alpha/lib/copy_page.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Copy an entire page.
66
*/
7-
#include <asm/export.h>
7+
#include <linux/export.h>
88
.text
99
.align 4
1010
.global copy_page

arch/alpha/lib/copy_user.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* exception setup stuff..
1313
*/
1414

15-
#include <asm/export.h>
15+
#include <linux/export.h>
1616

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

arch/alpha/lib/csum_ipv6_magic.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* added by Ivan Kokshaysky <ink@jurassic.park.msu.ru>
1414
*/
1515

16-
#include <asm/export.h>
16+
#include <linux/export.h>
1717
.globl csum_ipv6_magic
1818
.align 4
1919
.ent csum_ipv6_magic

arch/alpha/lib/divide.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* $28 - compare status
4747
*/
4848

49-
#include <asm/export.h>
49+
#include <linux/export.h>
5050
#define halt .long 0
5151

5252
/*

arch/alpha/lib/ev6-clear_page.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Zero an entire page.
66
*/
7-
#include <asm/export.h>
7+
#include <linux/export.h>
88
.text
99
.align 4
1010
.global clear_page

arch/alpha/lib/ev6-clear_user.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* want to leave a hole (and we also want to avoid repeating lots of work)
3030
*/
3131

32-
#include <asm/export.h>
32+
#include <linux/export.h>
3333
/* Allow an exception for an insn; exit if we get one. */
3434
#define EX(x,y...) \
3535
99: x,##y; \

arch/alpha/lib/ev6-copy_page.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
destination pages are in the dcache, but it is my guess that this is
5858
less important than the dcache miss case. */
5959

60-
#include <asm/export.h>
60+
#include <linux/export.h>
6161
.text
6262
.align 4
6363
.global copy_page

0 commit comments

Comments
 (0)