diff options
author | Nishanth Menon <nm@ti.com> | 2015-03-07 03:39:05 -0600 |
---|---|---|
committer | Mark Salter <msalter@redhat.com> | 2015-03-26 10:31:47 -0400 |
commit | f4831605f2dacd12730fe73961c77253cc2ea425 (patch) | |
tree | 811b8711d5eefdcaede19fb43ba182e519923bef /arch/c6x/kernel | |
parent | 3591276d16f8e568449e4b6c719165ad2decf222 (diff) | |
download | linux-f4831605f2dacd12730fe73961c77253cc2ea425.tar.gz linux-f4831605f2dacd12730fe73961c77253cc2ea425.tar.bz2 linux-f4831605f2dacd12730fe73961c77253cc2ea425.zip |
C6x: time: Ensure consistency in __init
time_init invokes timer64_init (which is __init annotation)
since all of these are invoked at init time, lets maintain
consistency by ensuring time_init is marked appropriately
as well.
This fixes the following warning with CONFIG_DEBUG_SECTION_MISMATCH=y
WARNING: vmlinux.o(.text+0x3bfc): Section mismatch in reference from the function time_init() to the function .init.text:timer64_init()
The function time_init() references
the function __init timer64_init().
This is often because time_init lacks a __init
annotation or the annotation of timer64_init is wrong.
Fixes: 546a39546c64 ("C6X: time management")
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Mark Salter <msalter@redhat.com>
Diffstat (limited to 'arch/c6x/kernel')
-rw-r--r-- | arch/c6x/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/c6x/kernel/time.c b/arch/c6x/kernel/time.c index 356ee84cad95..04845aaf5985 100644 --- a/arch/c6x/kernel/time.c +++ b/arch/c6x/kernel/time.c @@ -49,7 +49,7 @@ u64 sched_clock(void) return (tsc * sched_clock_multiplier) >> SCHED_CLOCK_SHIFT; } -void time_init(void) +void __init time_init(void) { u64 tmp = (u64)NSEC_PER_SEC << SCHED_CLOCK_SHIFT; |