From: Marcin Slusarz Date: Sun, 10 Aug 2008 22:07:44 +0000 (+0200) Subject: x86, tsc: fix section mismatch warning X-Git-Tag: v2.6.28-rc1~734^2^3~37 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90936cfe6c8f7e90a6f8b0c5cb44d3a012dfd313;p=pandora-kernel.git x86, tsc: fix section mismatch warning WARNING: vmlinux.o(.text+0x7950): Section mismatch in reference from the function native_calibrate_tsc() to the function .init.text:tsc_read_refs() The function native_calibrate_tsc() references the function __init tsc_read_refs(). This is often because native_calibrate_tsc lacks a __init annotation or the annotation of tsc_read_refs is wrong. tsc_read_refs is called from native_calibrate_tsc which is not __init and native_calibrate_tsc cannot be marked __init Signed-off-by: Marcin Slusarz Cc: Thomas Gleixner Cc: Ingo Molnar Cc: H. Peter Anvin Signed-off-by: H. Peter Anvin --- Reading git-diff-tree failed