summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/shared/mvme/mvme16x_hw.h10
1 files changed, 6 insertions, 4 deletions
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