projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e44a21b
)
KVM: powerpc: fix init/exit annotation
author
Jean Delvare
<
[email protected]
>
Tue, 18 May 2010 07:34:12 +0000
(09:34 +0200)
committer
Avi Kivity
<
[email protected]
>
Wed, 9 Jun 2010 15:39:09 +0000
(18:39 +0300)
kvmppc_e500_exit() is a module_exit function, so it should be tagged
with __exit, not __init. The incorrect annotation was added by commit
2986b8c72c272ea58edd37903b042c6da985627d
.
Signed-off-by: Jean Delvare <
[email protected]
>
Cc:
[email protected]
Signed-off-by: Alexander Graf <
[email protected]
>
Signed-off-by: Avi Kivity <
[email protected]
>
arch/powerpc/kvm/e500.c
patch
|
blob
|
history
diff --git
a/arch/powerpc/kvm/e500.c
b/arch/powerpc/kvm/e500.c
index bc2b4004eb265a70ea4b082693e0b9eb9cf49e3f..e8a00b0c444912d3b1bd0b300e9869942dc48198 100644
(file)
--- a/
arch/powerpc/kvm/e500.c
+++ b/
arch/powerpc/kvm/e500.c
@@
-164,7
+164,7
@@
static int __init kvmppc_e500_init(void)
return kvm_init(NULL, sizeof(struct kvmppc_vcpu_e500), 0, THIS_MODULE);
}
-static void __
in
it kvmppc_e500_exit(void)
+static void __
ex
it kvmppc_e500_exit(void)
{
kvmppc_booke_exit();
}