]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ARM: ep93xx: fix missing-prototype warnings
authorArnd Bergmann <arnd@arndb.de>
Tue, 16 May 2023 15:30:58 +0000 (17:30 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jul 2023 06:37:14 +0000 (08:37 +0200)
commitf54142ed16b5e42d334080354becc323c35a45df
tree3ac8cde624689d770286a1ca1cb9a09aeb23419d
parentc2324c5aa247543f2f5f19aa47dfa97c7bfdc225
ARM: ep93xx: fix missing-prototype warnings

[ Upstream commit 419013740ea1e4343d8ade535d999f59fa28e460 ]

ep93xx_clocksource_read() is only called from the file it is declared in,
while ep93xx_timer_init() is declared in a header that is not included here.

arch/arm/mach-ep93xx/timer-ep93xx.c:120:13: error: no previous prototype for 'ep93xx_timer_init'
arch/arm/mach-ep93xx/timer-ep93xx.c:63:5: error: no previous prototype for 'ep93xx_clocksource_read'

Fixes: 000bc17817bf ("ARM: ep93xx: switch to GENERIC_CLOCKEVENTS")
Acked-by: Alexander Sverdlin <alexander.sverdlin@gmail.com>
Link: https://lore.kernel.org/r/20230516153109.514251-3-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm/mach-ep93xx/timer-ep93xx.c