diff options
author | Arnd Bergmann <arnd@arndb.de> | 2015-02-27 14:31:51 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2015-12-01 15:50:24 -0500 |
commit | a0e157afd0c3ecb2e953eb41da04da2bf0e3d6c3 (patch) | |
tree | 7e6b92d70621cfd3771753012a0905da0c1051d7 /arch/arm/mach-s3c64xx/s3c6410.c | |
parent | 0f20e456bd0542b7bf8cae8f553142405a8ab430 (diff) |
ARM: s3c64xx: prepare initcalls for multiplatform
In a multiplatform kernel, each initcall is run regardless
of the platform it is meant for, so it must not attempt to
access SoC-specific registers.
This adds 'if (soc_is_s3c64xx)' to all initcalls that are
specific to the s3c64xx platform, to prevent them from breaking
other platforms once we can build them into a combined kernel.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c64xx/s3c6410.c')
-rw-r--r-- | arch/arm/mach-s3c64xx/s3c6410.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c64xx/s3c6410.c b/arch/arm/mach-s3c64xx/s3c6410.c index eadc48dee0e4..92bb927c4478 100644 --- a/arch/arm/mach-s3c64xx/s3c6410.c +++ b/arch/arm/mach-s3c64xx/s3c6410.c | |||
@@ -84,7 +84,7 @@ static struct device s3c6410_dev = { | |||
84 | static int __init s3c6410_core_init(void) | 84 | static int __init s3c6410_core_init(void) |
85 | { | 85 | { |
86 | /* Not applicable when using DT. */ | 86 | /* Not applicable when using DT. */ |
87 | if (of_have_populated_dt()) | 87 | if (of_have_populated_dt() || !soc_is_s3c64xx()) |
88 | return 0; | 88 | return 0; |
89 | 89 | ||
90 | return subsys_system_register(&s3c6410_subsys, NULL); | 90 | return subsys_system_register(&s3c6410_subsys, NULL); |