diff options
author | Magnus Damm <magnus@valinux.co.jp> | 2006-09-26 10:52:35 +0200 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2006-09-26 10:52:35 +0200 |
commit | c0d83745cc67ed71a08c14739a0b286d0239b1e2 (patch) | |
tree | 34429d7b1ae08178a4b11473481c69c94f4e5f92 /arch/i386 | |
parent | aada06c9b7f4cdedbeb2bc905893cf1923a0abad (diff) | |
download | op-kernel-dev-c0d83745cc67ed71a08c14739a0b286d0239b1e2.zip op-kernel-dev-c0d83745cc67ed71a08c14739a0b286d0239b1e2.tar.gz |
[PATCH] i386: mark two more functions as __init
cyrix_identify() should be __init because transmeta_identify() is.
tsc_init() is only called from setup_arch() which is marked as __init.
These two section mismatches have been detected using running modpost on
a vmlinux image compiled with CONFIG_RELOCATABLE=y.
Signed-off-by: Magnus Damm <magnus@valinux.co.jp>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/tsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/tsc.c b/arch/i386/kernel/tsc.c index 7e0d8da..b8fa0a8 100644 --- a/arch/i386/kernel/tsc.c +++ b/arch/i386/kernel/tsc.c @@ -192,7 +192,7 @@ int recalibrate_cpu_khz(void) EXPORT_SYMBOL(recalibrate_cpu_khz); -void tsc_init(void) +void __init tsc_init(void) { if (!cpu_has_tsc || tsc_disable) return; |