Skip to content

Commit 7547cbe

Browse files
masahir0ygeertu
authored andcommitted
m68k: 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> Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://lore.kernel.org/r/20230807153654.997091-1-masahiroy@kernel.org Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
1 parent e346f9d commit 7547cbe

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

arch/m68k/lib/divsi3.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ General Public License for more details. */
3333
D. V. Henkel-Wallace (gumby@cygnus.com) Fete Bastille, 1992
3434
*/
3535

36-
#include <asm/export.h>
36+
#include <linux/export.h>
3737

3838
/* These are predefined by new versions of GNU cpp. */
3939

arch/m68k/lib/modsi3.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ General Public License for more details. */
3333
D. V. Henkel-Wallace (gumby@cygnus.com) Fete Bastille, 1992
3434
*/
3535

36-
#include <asm/export.h>
36+
#include <linux/export.h>
3737

3838
/* These are predefined by new versions of GNU cpp. */
3939

arch/m68k/lib/mulsi3.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ General Public License for more details. */
3232
Some of this code comes from MINIX, via the folks at ericsson.
3333
D. V. Henkel-Wallace (gumby@cygnus.com) Fete Bastille, 1992
3434
*/
35-
#include <asm/export.h>
35+
#include <linux/export.h>
3636
/* These are predefined by new versions of GNU cpp. */
3737

3838
#ifndef __USER_LABEL_PREFIX__

arch/m68k/lib/udivsi3.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ General Public License for more details. */
3232
Some of this code comes from MINIX, via the folks at ericsson.
3333
D. V. Henkel-Wallace (gumby@cygnus.com) Fete Bastille, 1992
3434
*/
35-
#include <asm/export.h>
35+
#include <linux/export.h>
3636
/* These are predefined by new versions of GNU cpp. */
3737

3838
#ifndef __USER_LABEL_PREFIX__

arch/m68k/lib/umodsi3.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ General Public License for more details. */
3232
Some of this code comes from MINIX, via the folks at ericsson.
3333
D. V. Henkel-Wallace (gumby@cygnus.com) Fete Bastille, 1992
3434
*/
35-
#include <asm/export.h>
35+
#include <linux/export.h>
3636
/* These are predefined by new versions of GNU cpp. */
3737

3838
#ifndef __USER_LABEL_PREFIX__

0 commit comments

Comments
 (0)