Commit ecea4ab6d3d8bb4122522398200f1cd2a06af6d5

Authored by Paul Gortmaker
1 parent d91ef63bd5

arm: convert core files from module.h to export.h

Many of the core ARM kernel files are not modules, but just
including module.h for exporting symbols.  Now these files can
use the lighter footprint export.h for this role.

There are probably lots more, but ARM files of mach-* and plat-*
don't get coverage via a simple yesconfig build.  They will have
to be cleaned up and tested via using their respective configs.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Showing 14 changed files with 14 additions and 14 deletions Side-by-side Diff

arch/arm/kernel/armksyms.c
... ... @@ -7,7 +7,7 @@
7 7 * it under the terms of the GNU General Public License version 2 as
8 8 * published by the Free Software Foundation.
9 9 */
10   -#include <linux/module.h>
  10 +#include <linux/export.h>
11 11 #include <linux/sched.h>
12 12 #include <linux/string.h>
13 13 #include <linux/cryptohash.h>
arch/arm/kernel/bios32.c
... ... @@ -5,7 +5,7 @@
5 5 *
6 6 * Bits taken from various places.
7 7 */
8   -#include <linux/module.h>
  8 +#include <linux/export.h>
9 9 #include <linux/kernel.h>
10 10 #include <linux/pci.h>
11 11 #include <linux/slab.h>
arch/arm/kernel/devtree.c
... ... @@ -9,7 +9,7 @@
9 9 */
10 10  
11 11 #include <linux/init.h>
12   -#include <linux/module.h>
  12 +#include <linux/export.h>
13 13 #include <linux/errno.h>
14 14 #include <linux/types.h>
15 15 #include <linux/bootmem.h>
arch/arm/kernel/elf.c
1   -#include <linux/module.h>
  1 +#include <linux/export.h>
2 2 #include <linux/sched.h>
3 3 #include <linux/personality.h>
4 4 #include <linux/binfmts.h>
arch/arm/kernel/io.c
1   -#include <linux/module.h>
  1 +#include <linux/export.h>
2 2 #include <linux/types.h>
3 3 #include <linux/io.h>
4 4  
arch/arm/kernel/leds.c
... ... @@ -7,7 +7,7 @@
7 7 * it under the terms of the GNU General Public License version 2 as
8 8 * published by the Free Software Foundation.
9 9 */
10   -#include <linux/module.h>
  10 +#include <linux/export.h>
11 11 #include <linux/init.h>
12 12 #include <linux/sysdev.h>
13 13 #include <linux/syscore_ops.h>
arch/arm/kernel/perf_event.c
... ... @@ -15,7 +15,7 @@
15 15 #include <linux/bitmap.h>
16 16 #include <linux/interrupt.h>
17 17 #include <linux/kernel.h>
18   -#include <linux/module.h>
  18 +#include <linux/export.h>
19 19 #include <linux/perf_event.h>
20 20 #include <linux/platform_device.h>
21 21 #include <linux/spinlock.h>
arch/arm/kernel/process.c
... ... @@ -10,7 +10,7 @@
10 10 */
11 11 #include <stdarg.h>
12 12  
13   -#include <linux/module.h>
  13 +#include <linux/export.h>
14 14 #include <linux/sched.h>
15 15 #include <linux/kernel.h>
16 16 #include <linux/mm.h>
arch/arm/kernel/return_address.c
... ... @@ -8,7 +8,7 @@
8 8 * under the terms of the GNU General Public License version 2 as published by
9 9 * the Free Software Foundation.
10 10 */
11   -#include <linux/module.h>
  11 +#include <linux/export.h>
12 12 #include <linux/ftrace.h>
13 13  
14 14 #if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
arch/arm/kernel/setup.c
... ... @@ -7,7 +7,7 @@
7 7 * it under the terms of the GNU General Public License version 2 as
8 8 * published by the Free Software Foundation.
9 9 */
10   -#include <linux/module.h>
  10 +#include <linux/export.h>
11 11 #include <linux/kernel.h>
12 12 #include <linux/stddef.h>
13 13 #include <linux/ioport.h>
arch/arm/kernel/stacktrace.c
1   -#include <linux/module.h>
  1 +#include <linux/export.h>
2 2 #include <linux/sched.h>
3 3 #include <linux/stacktrace.h>
4 4  
arch/arm/kernel/sys_arm.c
... ... @@ -12,7 +12,7 @@
12 12 * have a non-standard calling sequence on the Linux/arm
13 13 * platform.
14 14 */
15   -#include <linux/module.h>
  15 +#include <linux/export.h>
16 16 #include <linux/errno.h>
17 17 #include <linux/sched.h>
18 18 #include <linux/mm.h>
arch/arm/kernel/time.c
... ... @@ -11,7 +11,7 @@
11 11 * This file contains the ARM-specific time handling details:
12 12 * reading the RTC at bootup, etc...
13 13 */
14   -#include <linux/module.h>
  14 +#include <linux/export.h>
15 15 #include <linux/kernel.h>
16 16 #include <linux/interrupt.h>
17 17 #include <linux/time.h>
arch/arm/kernel/unwind.c
... ... @@ -39,7 +39,7 @@
39 39  
40 40 #include <linux/kernel.h>
41 41 #include <linux/init.h>
42   -#include <linux/module.h>
  42 +#include <linux/export.h>
43 43 #include <linux/sched.h>
44 44 #include <linux/slab.h>
45 45 #include <linux/spinlock.h>