diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2008-04-24 01:31:46 -0400 |
---|---|---|
committer | Nicolas Pitre <nico@cam.org> | 2008-04-28 15:55:57 -0400 |
commit | c5a1e8f7091c33c7f6b53f070d13380facab6607 (patch) | |
tree | 5981295568c3e80ff9c5047488ad29e8a63412f3 /arch | |
parent | a7039bd6daa32f5ea1a185b7cb0b3b519e1f5018 (diff) |
[ARM] feroceon: remove CONFIG_CPU_CACHE_ROUND_ROBIN check
Since the Feroceon cache replacement policy is always pseudorandom
(and the relevant control register bit is ignored), remove the
CONFIG_CPU_CACHE_ROUND_ROBIN check from proc-feroceon.S.
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mm/proc-feroceon.S | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/mm/proc-feroceon.S b/arch/arm/mm/proc-feroceon.S index e9ac984d2897..3ceb6785a345 100644 --- a/arch/arm/mm/proc-feroceon.S +++ b/arch/arm/mm/proc-feroceon.S | |||
@@ -358,9 +358,6 @@ __feroceon_setup: | |||
358 | mrc p15, 0, r0, c1, c0 @ get control register v4 | 358 | mrc p15, 0, r0, c1, c0 @ get control register v4 |
359 | bic r0, r0, r5 | 359 | bic r0, r0, r5 |
360 | orr r0, r0, r6 | 360 | orr r0, r0, r6 |
361 | #ifdef CONFIG_CPU_CACHE_ROUND_ROBIN | ||
362 | orr r0, r0, #0x4000 @ .1.. .... .... .... | ||
363 | #endif | ||
364 | mov pc, lr | 361 | mov pc, lr |
365 | .size __feroceon_setup, . - __feroceon_setup | 362 | .size __feroceon_setup, . - __feroceon_setup |
366 | 363 | ||