dect
/
linux-2.6
Archived
13
0
Fork 0

sched: fix init_hrtick() section mismatch warning

LD      kernel/built-in.o
WARNING: kernel/built-in.o(.text+0x326): Section mismatch in reference
from the function init_hrtick() to the variable
.cpuinit.data:hotplug_hrtick_nb.8
The function init_hrtick() references
the variable __cpuinitdata hotplug_hrtick_nb.8.
This is often because init_hrtick lacks a __cpuinitdata
annotation or the annotation of hotplug_hrtick_nb.8 is wrong.

Signed-off-by: Md.Rakib H. Mullick <rakib.mullick@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Rakib Mullick 2008-09-22 14:55:45 -07:00 committed by Ingo Molnar
parent cec5eb7be3
commit fa74820317
1 changed files with 1 additions and 1 deletions

View File

@ -1087,7 +1087,7 @@ hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
return NOTIFY_DONE;
}
static void init_hrtick(void)
static __init void init_hrtick(void)
{
hotcpu_notifier(hotplug_hrtick, 0);
}