summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:37 +0000
commit4216c573e331cf1f5f1bec08cf4f7b21d2bdffbb (patch)
tree266bcc589345d8b89d0e8844f87b03e6d01b4388 /c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
parent2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-4216c573e331cf1f5f1bec08cf4f7b21d2bdffbb.tar.bz2
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* mpc5xx/console-generic/console-generic.c, mpc8260/timer/timer.c, new-exceptions/cpu.c, old-exceptions/cpu.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
Diffstat (limited to 'c/src/lib/libcpu/powerpc/new-exceptions/cpu.c')
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/cpu.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c b/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
index 19ba358cad..8344aa5c06 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c
@@ -40,23 +40,21 @@
* This routine performs processor dependent initialization.
*
* INPUT PARAMETERS:
- * cpu_table - CPU table to initialize
* thread_dispatch - address of disptaching routine
*/
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch) /* ignored on this CPU */
)
{
- _CPU_Table = *cpu_table;
-
- { unsigned hasFixed = 0;
- /* assert that our BSP has fixed PR288 */
- __asm__ __volatile__ ("mfspr %0, %2":"=r"(hasFixed):"0"(hasFixed),"i"(SPRG0));
- if ( PPC_BSP_HAS_FIXED_PR288 != hasFixed ) {
- BSP_panic("This BSP needs to fix PR#288");
- }
+ {
+ unsigned hasFixed = 0;
+ /* assert that our BSP has fixed PR288 */
+ __asm__ __volatile__ ("mfspr %0, %2":
+ "=r"(hasFixed):"0"(hasFixed),"i"(SPRG0));
+ if ( PPC_BSP_HAS_FIXED_PR288 != hasFixed ) {
+ BSP_panic("This BSP needs to fix PR#288");
+ }
}
}