]> git.itanic.dy.fi Git - linux-stable/commit
hexagon: time: mark time_init_deferred() as static
authorNathan Chancellor <nathan@kernel.org>
Thu, 30 Nov 2023 22:58:22 +0000 (15:58 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 01:21:35 +0000 (17:21 -0800)
commit1f443caea93e76a9e4613d9e370e082354ae3b44
tree5a953ae953ec1dd8e379f71c09c47c1420748320
parent3279333097b22e1bab750d0f40837a097ec765fd
hexagon: time: mark time_init_deferred() as static

Clang warns:

  arch/hexagon/kernel/time.c:163:13: warning: no previous prototype for function 'time_init_deferred' [-Wmissing-prototypes]
    163 | void __init time_init_deferred(void)
        |             ^
  arch/hexagon/kernel/time.c:163:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
    163 | void __init time_init_deferred(void)
        | ^
        | static

This function is not used outside of this translation unit so mark it as
static to resolve the warning.

Link: https://lkml.kernel.org/r/20231130-hexagon-missing-prototypes-v1-9-5c34714afe9e@kernel.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Brian Cain <bcain@quicinc.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/hexagon/kernel/time.c