Commit b90ad501 authored by Michael Ellerman's avatar Michael Ellerman

powerpc/44x: Make ppc44x_idle_init() static

The 44x/fsp2_defconfig build fails with:

  arch/powerpc/platforms/44x/idle.c:30:12: error: no previous prototype for ‘ppc44x_idle_init’ [-Werror=missing-prototypes]
  30 | int __init ppc44x_idle_init(void)
     |            ^~~~~~~~~~~~~~~~

Fix it by making ppc44x_idle_init() static.
Reviewed-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20231129131919.2528517-4-mpe@ellerman.id.au
parent 10feb8f9
......@@ -27,7 +27,7 @@ static void ppc44x_idle(void)
isync();
}
int __init ppc44x_idle_init(void)
static int __init ppc44x_idle_init(void)
{
if (!mode_spin) {
/* If we are not setting spin mode
......
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