]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit8df728701e233737bfb09f0a7e17b221e6f44c0b
treeb7bcc72ba5014a22356251c307afbd48cda53bb8
parenta466281bb5b2b06cbea32d7032a46f73f8c657bc
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