integrator: remove empty ap_init_early()
authorArnd Bergmann <arnd@arndb.de>
Fri, 22 Apr 2022 13:56:59 +0000 (15:56 +0200)
committerArnd Bergmann <arnd@arndb.de>
Fri, 22 Apr 2022 13:57:01 +0000 (15:57 +0200)
commit0e7add1e20a0eb7ca3d0576e4a785192f53f5fa5
treeb7bcc72ba5014a22356251c307afbd48cda53bb8
parent0cd47616cfbb1422e24414daa5a96637fc5aa663
integrator: remove empty ap_init_early()

The ap_init_early function is defined a global but has no declaration,
so it produces a warning:

arch/arm/mach-versatile/integrator_ap.c:148:13: warning: no previous prototype for 'ap_init_early' [-Wmissing-prototypes

The function could be made 'static' but since it's empty, we can
just remove it.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/arm/mach-versatile/integrator_ap.c