diff options
author | Robin Getz <robin.getz@analog.com> | 2007-09-13 03:49:33 (GMT) |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2007-09-13 03:49:33 (GMT) |
commit | 2296fb7ff04531dd8d50394da24f49302ecf103b (patch) | |
tree | cd63cc1867b23b40ae3513beaf040a0b46d6976f /include/asm-blackfin | |
parent | 4d5f4ed3fb797021523fc9fb6804047e8e35b33d (diff) | |
download | linux-2296fb7ff04531dd8d50394da24f49302ecf103b.tar.xz |
Blackfin arch: Fix bug missing L2_MEMORY definition for EZKIT-BF561 compiling error
Signed-off-by: Robin Getz <robin.getz@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'include/asm-blackfin')
-rw-r--r-- | include/asm-blackfin/cplb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-blackfin/cplb.h b/include/asm-blackfin/cplb.h index df47668..06828d7 100644 --- a/include/asm-blackfin/cplb.h +++ b/include/asm-blackfin/cplb.h @@ -30,7 +30,8 @@ #ifndef _CPLB_H #define _CPLB_H -# include <asm/blackfin.h> +#include <asm/blackfin.h> +#include <asm/mach/anomaly.h> #define SDRAM_IGENERIC (CPLB_L1_CHBL | CPLB_USER_RD | CPLB_VALID | CPLB_PORTPRIO) #define SDRAM_IKERNEL (SDRAM_IGENERIC | CPLB_LOCK) @@ -54,6 +55,7 @@ #endif #define L1_DMEMORY (CPLB_LOCK | CPLB_COMMON) +#define L2_MEMORY (CPLB_COMMON) #define SDRAM_DNON_CHBL (CPLB_COMMON) #define SDRAM_EBIU (CPLB_COMMON) #define SDRAM_OOPS (CPLB_VALID | ANOMALY_05000158_WORKAROUND | CPLB_LOCK | CPLB_DIRTY) |