diff options
author | Hisashi Nakamura <hisashi.nakamura.ak@renesas.com> | 2014-10-24 10:33:09 +0200 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2014-11-04 01:31:27 +0100 |
commit | 7466c52e1706d98392b6a4650b04e94f39f3a794 (patch) | |
tree | 4eea89d4c370a930ba0e2fc8ad713260ac27e89c /arch/arm/mach-shmobile/smp-r8a7791.c | |
parent | ARM: shmobile: Separate APMU resource data into CPU dependant part (diff) | |
download | linux-7466c52e1706d98392b6a4650b04e94f39f3a794.tar.xz linux-7466c52e1706d98392b6a4650b04e94f39f3a794.zip |
ARM: shmobile: r8a7791: Correct number of CPU cores
The r8a7791 only has 2 CPU CA15 cores, not 4 CA15 and 4 CA7 cores.
Signed-off-by: Hisashi Nakamura <hisashi.nakamura.ak@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile/smp-r8a7791.c')
-rw-r--r-- | arch/arm/mach-shmobile/smp-r8a7791.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/mach-shmobile/smp-r8a7791.c b/arch/arm/mach-shmobile/smp-r8a7791.c index 96e392c2573c..7e49e0a52e32 100644 --- a/arch/arm/mach-shmobile/smp-r8a7791.c +++ b/arch/arm/mach-shmobile/smp-r8a7791.c @@ -28,11 +28,7 @@ static struct rcar_apmu_config r8a7791_apmu_config[] = { { .iomem = DEFINE_RES_MEM(0xe6152000, 0x88), - .cpus = { 0, 1, 2, 3 }, - }, - { - .iomem = DEFINE_RES_MEM(0xe6151000, 0x88), - .cpus = { 0x100, 0x0101, 0x102, 0x103 }, + .cpus = { 0, 1 }, } }; |