|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] cpufreq: attach __exit to the (unused) cp
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1233684802 0
# Node ID 93d2193450c43e77f20764977d581e1e91cc154a
# Parent efef232bbbdb3719a4205abfc9c368e1a3873768
cpufreq: attach __exit to the (unused) cpufreq governor exit handlers
... in order to make them disappear from the final image. Of course
they could as well be removed altogether, but I assumed that whoever
added them had a reason to do so.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>
---
xen/drivers/cpufreq/cpufreq_misc_governors.c | 6 +++---
xen/drivers/cpufreq/cpufreq_ondemand.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff -r efef232bbbdb -r 93d2193450c4
xen/drivers/cpufreq/cpufreq_misc_governors.c
--- a/xen/drivers/cpufreq/cpufreq_misc_governors.c Tue Feb 03 18:12:51
2009 +0000
+++ b/xen/drivers/cpufreq/cpufreq_misc_governors.c Tue Feb 03 18:13:22
2009 +0000
@@ -61,7 +61,7 @@ static int __init cpufreq_gov_userspace_
}
__initcall(cpufreq_gov_userspace_init);
-static void cpufreq_gov_userspace_exit(void)
+static void __exit cpufreq_gov_userspace_exit(void)
{
cpufreq_unregister_governor(&cpufreq_gov_userspace);
}
@@ -106,7 +106,7 @@ static int __init cpufreq_gov_performanc
}
__initcall(cpufreq_gov_performance_init);
-static void cpufreq_gov_performance_exit(void)
+static void __exit cpufreq_gov_performance_exit(void)
{
cpufreq_unregister_governor(&cpufreq_gov_performance);
}
@@ -151,7 +151,7 @@ static int __init cpufreq_gov_powersave_
}
__initcall(cpufreq_gov_powersave_init);
-static void cpufreq_gov_powersave_exit(void)
+static void __exit cpufreq_gov_powersave_exit(void)
{
cpufreq_unregister_governor(&cpufreq_gov_powersave);
}
diff -r efef232bbbdb -r 93d2193450c4 xen/drivers/cpufreq/cpufreq_ondemand.c
--- a/xen/drivers/cpufreq/cpufreq_ondemand.c Tue Feb 03 18:12:51 2009 +0000
+++ b/xen/drivers/cpufreq/cpufreq_ondemand.c Tue Feb 03 18:13:22 2009 +0000
@@ -333,7 +333,7 @@ static int __init cpufreq_gov_dbs_init(v
}
__initcall(cpufreq_gov_dbs_init);
-static void cpufreq_gov_dbs_exit(void)
+static void __exit cpufreq_gov_dbs_exit(void)
{
cpufreq_unregister_governor(&cpufreq_gov_dbs);
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] cpufreq: attach __exit to the (unused) cpufreq governor exit handlers,
Xen patchbot-unstable <=
|
|
|
|
|