diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2009-06-01 21:46:14 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-09-10 01:32:44 -0400 |
commit | 2986b8c72c272ea58edd37903b042c6da985627d (patch) | |
tree | 5cbf6e5a353299df2a50a8174970008008647a57 /arch/powerpc/kvm/e500.c | |
parent | 6c8166a77c98f473eb91e96a61c3cf78ac617278 (diff) |
KVM: powerpc: fix some init/exit annotations
Fixes a couple of warnings like this one:
WARNING: arch/powerpc/kvm/kvm-440.o(.text+0x1e8c): Section mismatch in reference from the function kvmppc_44x_exit() to the function .exit.text:kvmppc_booke_exit()
The function kvmppc_44x_exit() references a function in an exit section.
Often the function kvmppc_booke_exit() has valid usage outside the exit section
and the fix is to remove the __exit annotation of kvmppc_booke_exit.
Also add some __init annotations on obvious routines.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/powerpc/kvm/e500.c')
-rw-r--r-- | arch/powerpc/kvm/e500.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kvm/e500.c b/arch/powerpc/kvm/e500.c index d8067fd81cdd..674e796f7aa5 100644 --- a/arch/powerpc/kvm/e500.c +++ b/arch/powerpc/kvm/e500.c | |||
@@ -132,7 +132,7 @@ void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu) | |||
132 | kmem_cache_free(kvm_vcpu_cache, vcpu_e500); | 132 | kmem_cache_free(kvm_vcpu_cache, vcpu_e500); |
133 | } | 133 | } |
134 | 134 | ||
135 | static int kvmppc_e500_init(void) | 135 | static int __init kvmppc_e500_init(void) |
136 | { | 136 | { |
137 | int r, i; | 137 | int r, i; |
138 | unsigned long ivor[3]; | 138 | unsigned long ivor[3]; |
@@ -160,7 +160,7 @@ static int kvmppc_e500_init(void) | |||
160 | return kvm_init(NULL, sizeof(struct kvmppc_vcpu_e500), THIS_MODULE); | 160 | return kvm_init(NULL, sizeof(struct kvmppc_vcpu_e500), THIS_MODULE); |
161 | } | 161 | } |
162 | 162 | ||
163 | static void kvmppc_e500_exit(void) | 163 | static void __init kvmppc_e500_exit(void) |
164 | { | 164 | { |
165 | kvmppc_booke_exit(); | 165 | kvmppc_booke_exit(); |
166 | } | 166 | } |