aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <michael.frysinger@analog.com>2008-02-01 23:28:23 -0500
committerBryan Wu <bryan.wu@analog.com>2008-02-01 23:28:23 -0500
commitc605999bd9a90a7a9915666f4531c60928cbc368 (patch)
tree5fd58fb2b5d359ded4435ef38368c67c6f354f7b
parent960265e22bcd4a657223e79f36643eb7e69b1a1f (diff)
[Blackfin] arch: error out if ANOMALY_05000263 applies while enabling the MPU
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
-rw-r--r--arch/blackfin/kernel/cplb-mpu/cplbinit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/blackfin/kernel/cplb-mpu/cplbinit.c b/arch/blackfin/kernel/cplb-mpu/cplbinit.c
index e2e2b5079f5..dc6e8a7a8bd 100644
--- a/arch/blackfin/kernel/cplb-mpu/cplbinit.c
+++ b/arch/blackfin/kernel/cplb-mpu/cplbinit.c
@@ -26,6 +26,10 @@
26#include <asm/cplb.h> 26#include <asm/cplb.h>
27#include <asm/cplbinit.h> 27#include <asm/cplbinit.h>
28 28
29#if ANOMALY_05000263
30# error the MPU will not function safely while Anomaly 05000263 applies
31#endif
32
29struct cplb_entry icplb_tbl[MAX_CPLBS]; 33struct cplb_entry icplb_tbl[MAX_CPLBS];
30struct cplb_entry dcplb_tbl[MAX_CPLBS]; 34struct cplb_entry dcplb_tbl[MAX_CPLBS];
31 35