Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4f309e5 authored by Peiwei Hu's avatar Peiwei Hu Committed by Greg Kroah-Hartman
Browse files

powerpc/prom_init: Fix improper check of prom_getprop()



[ Upstream commit 869fb7e5aecbc163003f93f36dcc26d0554319f6 ]

prom_getprop() can return PROM_ERROR. Binary operator can not identify
it.

Fixes: 94d2dde7 ("[POWERPC] Efika: prune fixups and make them more carefull")
Signed-off-by: default avatarPeiwei Hu <jlu.hpw@foxmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/tencent_BA28CC6897B7C95A92EB8C580B5D18589105@qq.com


Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent e12ad5f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2528,7 +2528,7 @@ static void __init fixup_device_tree_efika_add_phy(void)

	/* Check if the phy-handle property exists - bail if it does */
	rv = prom_getprop(node, "phy-handle", prop, sizeof(prop));
	if (!rv)
	if (rv <= 0)
		return;

	/*