This series of commits converts non-modular code that is using the module_init() call to hook itself into the system to instead use device_initcall().
The conversion is a runtime no-op, since module_init actually becomes __initcall in the non-modular case, and that in turn gets mapped onto device_initcall. We fix this up now, so that we can relocate module_init from init.h into module.h in a future series. The files changed here are just limited to those that would otherwise have to add module.h to obviously non-modular code, since we don't want to do that. This work is factored out from what was a previously larger series[1] so that there is a common theme and lower patch count to ease review. Paul. [1] https://marc.info/?l=linux-kernel&m=139033951228828 --- Cc: Benjamin Herrenschmidt <[email protected]> Cc: Chris Zankel <[email protected]> Cc: David Howells <[email protected]> Cc: Fenghua Yu <[email protected]> Cc: Geoff Levand <[email protected]> Cc: Helge Deller <[email protected]> Cc: "H. Peter Anvin" <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Ivan Kokshaysky <[email protected]> Cc: "James E.J. Bottomley" <[email protected]> Cc: Jesper Nilsson <[email protected]> Cc: Koichi Yasutake <[email protected]> Cc: Matt Turner <[email protected]> Cc: Max Filippov <[email protected]> Cc: Mikael Starvik <[email protected]> Cc: Mike Turquette <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Paul Mundt <[email protected]> Cc: Richard Henderson <[email protected]> Cc: Russell King <[email protected]> Cc: Scott Wood <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Thomas Meyer <[email protected]> Cc: Tony Luck <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Paul Gortmaker (15): x86: don't use module_init in non-modular intel_mid_vrtc.c x86: don't use module_init in non-modular devicetree.c code powerpc: use device_initcall for registering rtc devices powerpc: don't use module_init in non-modular 83xx suspend code arm: don't use module_init in non-modular mach-vexpress/spc.c code alpha: don't use module_init for non-modular core code ia64: don't use module_init for non-modular core kernel/mca.c code ia64: don't use module_init in non-modular sim/simscsi.c code cris: don't use module_init for non-modular core intmem.c code parisc: don't use module_init for non-modular core pdc_cons code parisc64: don't use module_init for non-modular core perf code mn10300: don't use module_init in non-modular flash.c code sh: don't use module_init in non-modular psw.c code xtensa: don't use module_init for non-modular core network.c code drivers/clk: don't use module_init in clk-nomadik.c which is non-modular arch/alpha/kernel/srmcons.c | 3 +-- arch/arm/mach-vexpress/spc.c | 2 +- arch/cris/arch-v32/mm/intmem.c | 3 +-- arch/ia64/hp/sim/simscsi.c | 11 +---------- arch/ia64/sn/kernel/mca.c | 3 +-- arch/mn10300/unit-asb2303/flash.c | 3 +-- arch/parisc/kernel/pdc_cons.c | 3 +-- arch/parisc/kernel/perf.c | 3 +-- arch/powerpc/kernel/time.c | 2 +- arch/powerpc/platforms/83xx/suspend.c | 3 +-- arch/powerpc/platforms/ps3/time.c | 3 +-- arch/sh/boards/mach-landisk/psw.c | 2 +- arch/x86/kernel/devicetree.c | 2 +- arch/x86/platform/intel-mid/intel_mid_vrtc.c | 3 +-- arch/xtensa/platforms/iss/network.c | 4 +--- drivers/clk/clk-nomadik.c | 3 +-- 16 files changed, 16 insertions(+), 37 deletions(-) -- 2.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

