Commit e6beb47e authored by Haoran Liu's avatar Haoran Liu Committed by Michael Ellerman

powerpc/powernv: Add error handling to opal_prd_range_is_valid

In the opal_prd_range_is_valid function within opal-prd.c,
error handling was missing for the of_get_address call.
This patch adds necessary error checking, ensuring that the
function gracefully handles scenarios where of_get_address fails.
Signed-off-by: default avatarHaoran Liu <liuhaoran14@163.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20231127144108.29782-1-liuhaoran14@163.com
parent ba5b952a
......@@ -66,6 +66,8 @@ static bool opal_prd_range_is_valid(uint64_t addr, uint64_t size)
const char *label;
addrp = of_get_address(node, 0, &range_size, NULL);
if (!addrp)
continue;
range_addr = of_read_number(addrp, 2);
range_end = range_addr + range_size;
......
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