From 93f5adb644363d321ddfcbf48586296ed7add189 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 15 Jul 2015 10:51:12 +0200 Subject: powerpc: Do not use the ATB for e500 multilib The e500v1 has no support for the ATB. Update #2369. --- cpukit/score/cpu/powerpc/rtems/score/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit') diff --git a/cpukit/score/cpu/powerpc/rtems/score/cpu.h b/cpukit/score/cpu/powerpc/rtems/score/cpu.h index 45298a46dd..7fef878599 100644 --- a/cpukit/score/cpu/powerpc/rtems/score/cpu.h +++ b/cpukit/score/cpu/powerpc/rtems/score/cpu.h @@ -838,7 +838,7 @@ static inline CPU_Counter_ticks _CPU_Counter_read( void ) { CPU_Counter_ticks value; -#if defined(ppc8540) || defined(__PPC_CPU_E6500__) +#if defined(__PPC_CPU_E6500__) /* Use Alternate Time Base */ __asm__ volatile( "mfspr %0, 526" : "=r" (value) ); #else -- cgit v1.2.3