From: Vincent Legoll Date: Mon, 12 Aug 2024 13:17:42 +0000 (+0200) Subject: MIPS: ralink: Fix missing `plat_time_init` prototype X-Git-Tag: v6.12-rc1~222^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f3089ad555601b494c91aa9dfbf9c3060cc3e73;p=thirdparty%2Fkernel%2Flinux.git MIPS: ralink: Fix missing `plat_time_init` prototype Fix the following warning: CC arch/mips/ralink/timer-gic.o arch/mips/ralink/timer-gic.c:18:13: warning: no previous prototype for 'plat_time_init' [-Wmissing-prototypes] 18 | void __init plat_time_init(void) | ^~~~~~~~~~~~~~ Signed-off-by: Vincent Legoll Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/ralink/timer-gic.c b/arch/mips/ralink/timer-gic.c index dcf2a44ac51ee..926082655a780 100644 --- a/arch/mips/ralink/timer-gic.c +++ b/arch/mips/ralink/timer-gic.c @@ -11,6 +11,8 @@ #include #include +#include + #include "common.h" void __init plat_time_init(void)