ARM: realview-eb11mp: fix map_desc alignment
REALVIEW_EB11MP_GIC_CPU_BASE is not 4KB aligned which causes an overlapping mapping. Use REALVIEW_EB11MP_SCU_BASE instead which is aligned. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
This commit is contained in:
parent
9ceceb652a
commit
3e28c80044
|
@ -91,8 +91,8 @@ static struct map_desc realview_eb_io_desc[] __initdata = {
|
|||
|
||||
static struct map_desc realview_eb11mp_io_desc[] __initdata = {
|
||||
{
|
||||
.virtual = IO_ADDRESS(REALVIEW_EB11MP_GIC_CPU_BASE),
|
||||
.pfn = __phys_to_pfn(REALVIEW_EB11MP_GIC_CPU_BASE),
|
||||
.virtual = IO_ADDRESS(REALVIEW_EB11MP_SCU_BASE),
|
||||
.pfn = __phys_to_pfn(REALVIEW_EB11MP_SCU_BASE),
|
||||
.length = SZ_4K,
|
||||
.type = MT_DEVICE,
|
||||
}, {
|
||||
|
|
Loading…
Reference in New Issue