diff options
author | Olof Johansson <olof@lixom.net> | 2013-01-24 08:12:24 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-01-24 08:12:24 -0800 |
commit | 3836414f45b01486b9b50c627a329010573ad0f4 (patch) | |
tree | f41e51a6194491a63dc6f86473f335a07e031488 /arch/arm/plat-versatile/headsmp.S | |
parent | 60fd8e35e32087eed200bea99be037b5f75a016e (diff) | |
parent | 52666298aebe5e9ab28a773ee61d2ce81fa097bb (diff) |
Merge branch 'vexpress/fixes' of git://git.linaro.org/people/pawelmoll/linux into fixes
From Pawel Moll:
- makes the V2P-CA15_A7 (a.k.a. TC2) work with 3.8 kernels
- improves vexpress-sysreg.c behaviour on arm64 platforms
* 'vexpress/fixes' of git://git.linaro.org/people/pawelmoll/linux:
mfd: vexpress-sysreg: Don't skip initialization on probe
ARM: vexpress: Enable A7 cores in V2P-CA15_A7's Device Tree
ARM: vexpress: extend the MPIDR range used for pen release check
Diffstat (limited to 'arch/arm/plat-versatile/headsmp.S')
-rw-r--r-- | arch/arm/plat-versatile/headsmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-versatile/headsmp.S b/arch/arm/plat-versatile/headsmp.S index dd703ef09b8..b178d44e9ea 100644 --- a/arch/arm/plat-versatile/headsmp.S +++ b/arch/arm/plat-versatile/headsmp.S @@ -20,7 +20,7 @@ */ ENTRY(versatile_secondary_startup) mrc p15, 0, r0, c0, c0, 5 - and r0, r0, #15 + bic r0, #0xff000000 adr r4, 1f ldmia r4, {r5, r6} sub r4, r4, r5 |