From 3f05b150dff6e3d5444597a2ab6f4e41ce970046 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 12 Jul 2011 16:20:41 +0000 Subject: 2011-07-12 Joel Sherrill * shared/start.S, shared/mvme/mvme16x_hw.h: Check on MVME167 at OAR after RTC replaced. --- c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h') diff --git a/c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h b/c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h index 4225d28e36..31a3f9ccbd 100644 --- a/c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h +++ b/c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h @@ -246,13 +246,15 @@ typedef volatile struct nvram_config_ { /* * Flag to indicate if J1-4 is on (and parameters should be * sought in User Area NVRAM) + * + * NOTE: If NVRAM has bad settings, the you want to disable this + * on the MVME167. */ - #if defined(mvme167) -#define NVRAM_CONFIGURE \ - ( !( ( (unsigned char)(lcsr->vector_base & 0xFF) ) & 0x10 ) ) + #define NVRAM_CONFIGURE \ + ( !( ( (unsigned char)(lcsr->vector_base & 0xFF) ) & 0x10 ) ) #else -#define NVRAM_CONFIGURE 0 + #define NVRAM_CONFIGURE 0 #endif #ifdef __cplusplus -- cgit v1.2.3