]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86/hwmon: {core, pkg, via}cpu_temp_device_remove() can all be __cpuinit
authorJan Beulich <jbeulich@novell.com>
Fri, 24 Sep 2010 05:31:10 +0000 (22:31 -0700)
committerGuenter Roeck <guenter.roeck@ericsson.com>
Mon, 25 Oct 2010 21:11:19 +0000 (14:11 -0700)
... as they're being called only from a __cpuinit function.

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
drivers/hwmon/coretemp.c
drivers/hwmon/pkgtemp.c
drivers/hwmon/via-cputemp.c

index a23b17a78ace8f42cb114b30f593b9019a24a982..f34fe836b5c900a351ec2be607644513ec7e3a21 100644 (file)
@@ -490,7 +490,7 @@ exit:
        return err;
 }
 
-static void coretemp_device_remove(unsigned int cpu)
+static void __cpuinit coretemp_device_remove(unsigned int cpu)
 {
        struct pdev_entry *p;
        unsigned int i;
index f11903936c8b3a51c3f8dddcb20318185952fa79..db5352c20946e77c87c586871620648255989dd1 100644 (file)
@@ -340,7 +340,7 @@ exit:
 }
 
 #ifdef CONFIG_HOTPLUG_CPU
-static void pkgtemp_device_remove(unsigned int cpu)
+static void __cpuinit pkgtemp_device_remove(unsigned int cpu)
 {
        struct pdev_entry *p;
        unsigned int i;
index ffb793af680b7cf378e6e1cf63c5e9bfc7c378c7..497bd231e241e1e9a1e22191137a3ecf69061984 100644 (file)
@@ -238,7 +238,7 @@ exit:
 }
 
 #ifdef CONFIG_HOTPLUG_CPU
-static void via_cputemp_device_remove(unsigned int cpu)
+static void __cpuinit via_cputemp_device_remove(unsigned int cpu)
 {
        struct pdev_entry *p, *n;
        mutex_lock(&pdev_list_mutex);