diff options
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/Kconfig | 8 | ||||
-rw-r--r-- | arch/powerpc/kernel/prom_init.c | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/setup_64.c | 6 | ||||
-rw-r--r-- | arch/powerpc/kernel/traps.c | 4 |
4 files changed, 10 insertions, 10 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 967ecf92d6a7..0bd315de156b 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -319,8 +319,8 @@ config PPC_MAPLE | |||
319 | This option enables support for the Maple 970FX Evaluation Board. | 319 | This option enables support for the Maple 970FX Evaluation Board. |
320 | For more informations, refer to <http://www.970eval.com> | 320 | For more informations, refer to <http://www.970eval.com> |
321 | 321 | ||
322 | config PPC_BPA | 322 | config PPC_CELL |
323 | bool " Broadband Processor Architecture" | 323 | bool " Cell Broadband Processor Architecture" |
324 | depends on PPC_MULTIPLATFORM && PPC64 | 324 | depends on PPC_MULTIPLATFORM && PPC64 |
325 | select PPC_RTAS | 325 | select PPC_RTAS |
326 | 326 | ||
@@ -358,8 +358,8 @@ config MPIC_BROKEN_U3 | |||
358 | depends on PPC_MAPLE | 358 | depends on PPC_MAPLE |
359 | default y | 359 | default y |
360 | 360 | ||
361 | config BPA_IIC | 361 | config CELL_IIC |
362 | depends on PPC_BPA | 362 | depends on PPC_CELL |
363 | bool | 363 | bool |
364 | default y | 364 | default y |
365 | 365 | ||
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index 9750b3cd8ecd..c758b6624d7b 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c | |||
@@ -2000,7 +2000,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, | |||
2000 | #endif | 2000 | #endif |
2001 | 2001 | ||
2002 | /* | 2002 | /* |
2003 | * On pSeries and BPA, copy the CPU hold code | 2003 | * Copy the CPU hold code |
2004 | */ | 2004 | */ |
2005 | if (RELOC(of_platform) != PLATFORM_POWERMAC) | 2005 | if (RELOC(of_platform) != PLATFORM_POWERMAC) |
2006 | copy_and_flush(0, KERNELBASE + offset, 0x100, 0); | 2006 | copy_and_flush(0, KERNELBASE + offset, 0x100, 0); |
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index 19530ce9cd27..70ead7d0d12e 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -296,7 +296,7 @@ static void __init setup_cpu_maps(void) | |||
296 | extern struct machdep_calls pSeries_md; | 296 | extern struct machdep_calls pSeries_md; |
297 | extern struct machdep_calls pmac_md; | 297 | extern struct machdep_calls pmac_md; |
298 | extern struct machdep_calls maple_md; | 298 | extern struct machdep_calls maple_md; |
299 | extern struct machdep_calls bpa_md; | 299 | extern struct machdep_calls cell_md; |
300 | extern struct machdep_calls iseries_md; | 300 | extern struct machdep_calls iseries_md; |
301 | 301 | ||
302 | /* Ultimately, stuff them in an elf section like initcalls... */ | 302 | /* Ultimately, stuff them in an elf section like initcalls... */ |
@@ -310,8 +310,8 @@ static struct machdep_calls __initdata *machines[] = { | |||
310 | #ifdef CONFIG_PPC_MAPLE | 310 | #ifdef CONFIG_PPC_MAPLE |
311 | &maple_md, | 311 | &maple_md, |
312 | #endif /* CONFIG_PPC_MAPLE */ | 312 | #endif /* CONFIG_PPC_MAPLE */ |
313 | #ifdef CONFIG_PPC_BPA | 313 | #ifdef CONFIG_PPC_CELL |
314 | &bpa_md, | 314 | &cell_md, |
315 | #endif | 315 | #endif |
316 | #ifdef CONFIG_PPC_ISERIES | 316 | #ifdef CONFIG_PPC_ISERIES |
317 | &iseries_md, | 317 | &iseries_md, |
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index 5d638ecddbd0..bb0d00284a7e 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c | |||
@@ -147,8 +147,8 @@ int die(const char *str, struct pt_regs *regs, long err) | |||
147 | printk("POWERMAC "); | 147 | printk("POWERMAC "); |
148 | nl = 1; | 148 | nl = 1; |
149 | break; | 149 | break; |
150 | case PLATFORM_BPA: | 150 | case PLATFORM_CELL: |
151 | printk("BPA "); | 151 | printk("CELL "); |
152 | nl = 1; | 152 | nl = 1; |
153 | break; | 153 | break; |
154 | } | 154 | } |