Commit ef78f2dd authored by Michael Ellerman's avatar Michael Ellerman

powerpc/85xx: Fix declaration made after definition

Currently the clang build of corenet64_smp_defconfig fails with:

  arch/powerpc/platforms/85xx/corenet_generic.c:210:1: error:
  attribute declaration must precede definition
  machine_arch_initcall(corenet_generic, corenet_gen_publish_devices);

Fix it by moving the initcall definition prior to the machine
definition, and directly below the function it calls, which is the
usual style anyway.
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20201023020838.3274226-1-mpe@ellerman.id.au
parent 53f45ecc
...@@ -106,6 +106,7 @@ int __init corenet_gen_publish_devices(void) ...@@ -106,6 +106,7 @@ int __init corenet_gen_publish_devices(void)
{ {
return of_platform_bus_probe(NULL, of_device_ids, NULL); return of_platform_bus_probe(NULL, of_device_ids, NULL);
} }
machine_arch_initcall(corenet_generic, corenet_gen_publish_devices);
static const char * const boards[] __initconst = { static const char * const boards[] __initconst = {
"fsl,P2041RDB", "fsl,P2041RDB",
...@@ -206,5 +207,3 @@ define_machine(corenet_generic) { ...@@ -206,5 +207,3 @@ define_machine(corenet_generic) {
.power_save = e500_idle, .power_save = e500_idle,
#endif #endif
}; };
machine_arch_initcall(corenet_generic, corenet_gen_publish_devices);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment