Skip to content

Commit

Permalink
m68k: Replace #include <asm/export.h> with #include <linux/export.h>
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Geert Uytterhoeven <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Geert Uytterhoeven <[email protected]>
  • Loading branch information
masahir0y authored and geertu committed Aug 21, 2023
1 parent e346f9d commit 7547cbe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arch/m68k/lib/divsi3.S
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ General Public License for more details. */
D. V. Henkel-Wallace ([email protected]) Fete Bastille, 1992
*/

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

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

Expand Down
2 changes: 1 addition & 1 deletion arch/m68k/lib/modsi3.S
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ General Public License for more details. */
D. V. Henkel-Wallace ([email protected]) Fete Bastille, 1992
*/

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

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

Expand Down
2 changes: 1 addition & 1 deletion arch/m68k/lib/mulsi3.S
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ General Public License for more details. */
Some of this code comes from MINIX, via the folks at ericsson.
D. V. Henkel-Wallace ([email protected]) Fete Bastille, 1992
*/
#include <asm/export.h>
#include <linux/export.h>
/* These are predefined by new versions of GNU cpp. */

#ifndef __USER_LABEL_PREFIX__
Expand Down
2 changes: 1 addition & 1 deletion arch/m68k/lib/udivsi3.S
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ General Public License for more details. */
Some of this code comes from MINIX, via the folks at ericsson.
D. V. Henkel-Wallace ([email protected]) Fete Bastille, 1992
*/
#include <asm/export.h>
#include <linux/export.h>
/* These are predefined by new versions of GNU cpp. */

#ifndef __USER_LABEL_PREFIX__
Expand Down
2 changes: 1 addition & 1 deletion arch/m68k/lib/umodsi3.S
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ General Public License for more details. */
Some of this code comes from MINIX, via the folks at ericsson.
D. V. Henkel-Wallace ([email protected]) Fete Bastille, 1992
*/
#include <asm/export.h>
#include <linux/export.h>
/* These are predefined by new versions of GNU cpp. */

#ifndef __USER_LABEL_PREFIX__
Expand Down

0 comments on commit 7547cbe

Please sign in to comment.