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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);