diff options
author | Giuliano Pochini <pochini@shiny.it> | 2009-02-21 07:21:25 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-02-22 23:53:06 -0500 |
commit | 4c4ece3cf8391e842f2c67a4760885e0acb3a461 (patch) | |
tree | db32617bc5d430f400de6e3ea5418564b899b7b8 /arch/powerpc | |
parent | 41fd81cc568156af90913c248c40788b6f57c887 (diff) |
powerpc/powermac: Hotplug /sys entries are missing
On Wed, 18 Feb 2009 22:18:21 +0100
Giuliano Pochini <pochini@shiny.it> wrote:
Since 2.6.28, /sys/devices/system/cpu/cpu*/online don't exist anymore
on 32-bit PowerMacs due to change in the generic powerpc code.
Signed-off-by: Giuliano Pochini <pochini@shiny.it>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/powermac/setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/powermac/setup.c b/arch/powerpc/platforms/powermac/setup.c index 9b78f5300c24..45936c9ed0ec 100644 --- a/arch/powerpc/platforms/powermac/setup.c +++ b/arch/powerpc/platforms/powermac/setup.c | |||
@@ -746,4 +746,7 @@ define_machine(powermac) { | |||
746 | #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PPC64) | 746 | #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PPC64) |
747 | .cpu_die = pmac_cpu_die, | 747 | .cpu_die = pmac_cpu_die, |
748 | #endif | 748 | #endif |
749 | #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PPC32) | ||
750 | .cpu_die = generic_mach_cpu_die, | ||
751 | #endif | ||
749 | }; | 752 | }; |