diff options
author | Rakib Mullick <rakib.mullick@gmail.com> | 2008-10-29 14:13:39 -0700 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2008-11-11 20:55:10 +0200 |
commit | a29a2af378f3f6362b68e126e2541c8bde885ead (patch) | |
tree | 9358c42cb95e567ca10f7a9418c0455c0f2c5a7d /arch/x86/kernel/kvmclock.c | |
parent | a2e4e28946c2c282a040ba4945c8f7288de69118 (diff) | |
download | blackbird-obmc-linux-a29a2af378f3f6362b68e126e2541c8bde885ead.tar.gz blackbird-obmc-linux-a29a2af378f3f6362b68e126e2541c8bde885ead.zip |
x86: KVM guest: fix section mismatch warning in kvmclock.c
WARNING: arch/x86/kernel/built-in.o(.text+0x1722c): Section mismatch
in reference from the function kvm_setup_secondary_clock() to the
function .devinit.text:setup_secondary_APIC_clock()
The function kvm_setup_secondary_clock() references
the function __devinit setup_secondary_APIC_clock().
This is often because kvm_setup_secondary_clock lacks a __devinit
annotation or the annotation of setup_secondary_APIC_clock is wrong.
Signed-off-by: Md.Rakib H. Mullick <rakib.mullick@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kernel/kvmclock.c')
-rw-r--r-- | arch/x86/kernel/kvmclock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/kvmclock.c b/arch/x86/kernel/kvmclock.c index 774ac4991568..1c9cc431ea4f 100644 --- a/arch/x86/kernel/kvmclock.c +++ b/arch/x86/kernel/kvmclock.c @@ -128,7 +128,7 @@ static int kvm_register_clock(char *txt) } #ifdef CONFIG_X86_LOCAL_APIC -static void kvm_setup_secondary_clock(void) +static void __devinit kvm_setup_secondary_clock(void) { /* * Now that the first cpu already had this clocksource initialized, |