aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/sysfs.c
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2006-07-28 13:58:37 +1000
committerPaul Mackerras <paulus@samba.org>2006-08-07 12:03:49 +1000
commitafd05423e02bc7391a7489b686ba1e166b6e8349 (patch)
tree040a752095e88afbebda9eea7cbfa34dcfdf1de8 /arch/powerpc/kernel/sysfs.c
parent[POWERPC] clean up pseries hcall interfaces (diff)
downloadlinux-dev-afd05423e02bc7391a7489b686ba1e166b6e8349.tar.xz
linux-dev-afd05423e02bc7391a7489b686ba1e166b6e8349.zip
[POWERPC] Enable PURR sysfs entry correctly
We have CPU_FTR_PURR now, so let's use it. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/sysfs.c')
-rw-r--r--arch/powerpc/kernel/sysfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c
index ae927a4e46e4..406f308ddead 100644
--- a/arch/powerpc/kernel/sysfs.c
+++ b/arch/powerpc/kernel/sysfs.c
@@ -230,7 +230,7 @@ static void register_cpu_online(unsigned int cpu)
if (cur_cpu_spec->num_pmcs >= 8)
sysdev_create_file(s, &attr_pmc8);
- if (cpu_has_feature(CPU_FTR_SMT))
+ if (cpu_has_feature(CPU_FTR_PURR))
sysdev_create_file(s, &attr_purr);
}
@@ -272,7 +272,7 @@ static void unregister_cpu_online(unsigned int cpu)
if (cur_cpu_spec->num_pmcs >= 8)
sysdev_remove_file(s, &attr_pmc8);
- if (cpu_has_feature(CPU_FTR_SMT))
+ if (cpu_has_feature(CPU_FTR_PURR))
sysdev_remove_file(s, &attr_purr);
}
#endif /* CONFIG_HOTPLUG_CPU */