diff options
author | Michael Neuling <mikey@neuling.org> | 2006-07-28 03:58:37 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-08-07 02:03:49 (GMT) |
commit | afd05423e02bc7391a7489b686ba1e166b6e8349 (patch) | |
tree | 040a752095e88afbebda9eea7cbfa34dcfdf1de8 | |
parent | b9377ffc3a03cde558d76349a262a1adbb6d3112 (diff) | |
download | linux-afd05423e02bc7391a7489b686ba1e166b6e8349.tar.xz |
[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>
-rw-r--r-- | arch/powerpc/kernel/sysfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c index ae927a4..406f308 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 */ |