Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ecea4ab6 authored by Paul Gortmaker's avatar Paul Gortmaker
Browse files

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: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent d91ef63b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/module.h>
#include <linux/export.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/cryptohash.h>
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
 *
 *  Bits taken from various places.
 */
#include <linux/module.h>
#include <linux/export.h>
#include <linux/kernel.h>
#include <linux/pci.h>
#include <linux/slab.h>
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/export.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/bootmem.h>
+1 −1
Original line number Diff line number Diff line
#include <linux/module.h>
#include <linux/export.h>
#include <linux/sched.h>
#include <linux/personality.h>
#include <linux/binfmts.h>
+1 −1
Original line number Diff line number Diff line
#include <linux/module.h>
#include <linux/export.h>
#include <linux/types.h>
#include <linux/io.h>

Loading