mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
MIPS: octeon: Fix compile error
Commited6a0b6e9f
("MIPS: octeon: Use of_address_to_resource()") lost a cast, which causes a compile error. Fixes:ed6a0b6e9f
("MIPS: octeon: Use of_address_to_resource()") Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
parent
600efe35d5
commit
101f26c728
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user