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>
This commit is contained in:
@@ -81,7 +81,7 @@ static struct device s3c6400_dev = {
|
||||
static int __init s3c6400_core_init(void)
|
||||
{
|
||||
/* Not applicable when using DT. */
|
||||
if (of_have_populated_dt())
|
||||
if (of_have_populated_dt() || soc_is_s3c64xx())
|
||||
return 0;
|
||||
|
||||
return subsys_system_register(&s3c6400_subsys, NULL);
|
||||
|
Reference in New Issue
Block a user