Commit 101f26c7 authored by Thomas Bogendoerfer's avatar Thomas Bogendoerfer

MIPS: octeon: Fix compile error

Commit ed6a0b6e ("MIPS: octeon: Use of_address_to_resource()") lost
a cast, which causes a compile error.

Fixes: ed6a0b6e ("MIPS: octeon: Use of_address_to_resource()")
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 600efe35
......@@ -2890,7 +2890,7 @@ static int __init octeon_irq_init_ciu3(struct device_node *ciu_node,
if (WARN_ON(ret))
return ret;
ciu3_info->ciu3_addr = base_addr = phys_to_virt(res.start);
ciu3_info->ciu3_addr = base_addr = (u64)phys_to_virt(res.start);
ciu3_info->node = node;
consts.u64 = cvmx_read_csr(base_addr + CIU3_CONST);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment