aboutsummaryrefslogtreecommitdiff
path: root/src/arch/armv7/mmu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/armv7/mmu.c')
-rw-r--r--src/arch/armv7/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/armv7/mmu.c b/src/arch/armv7/mmu.c
index 17ad8b73ed..cc915a6a33 100644
--- a/src/arch/armv7/mmu.c
+++ b/src/arch/armv7/mmu.c
@@ -91,7 +91,7 @@ void mmu_config_range(unsigned long start_mb, unsigned long size_mb,
str = "writeback";
break;
case DCACHE_WRITETHROUGH:
- attr = (0x3 << 10) | (1 << 3) | (1 << 2) | 0x2;
+ attr = (0x3 << 10) | (1 << 3) | 0x2;
str = "writethrough";
break;
default: