power-domain: Fix use of uninitialized value in dev_power_domain_ctrl
If dev_count_phandle_with_args returns 0 or another error, then pd will never
have been initialized by power_domain_get_by_index. Avoid comparing against
pd.dev in this situation.
Fixes: 3e4fcfa4bc
("power-domain: fix hang in endless loop on i.MX8")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:

committed by
Jaehoon Chung

parent
ea5583b90f
commit
847990219c
@@ -137,7 +137,7 @@ static int dev_power_domain_ctrl(struct udevice *dev, bool on)
|
|||||||
* off their power-domain parent. So we will get here again and
|
* off their power-domain parent. So we will get here again and
|
||||||
* again and will be stuck in an endless loop.
|
* again and will be stuck in an endless loop.
|
||||||
*/
|
*/
|
||||||
if (!on && dev_get_parent(dev) == pd.dev &&
|
if (count > 0 && !on && dev_get_parent(dev) == pd.dev &&
|
||||||
device_get_uclass_id(dev) == UCLASS_POWER_DOMAIN)
|
device_get_uclass_id(dev) == UCLASS_POWER_DOMAIN)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user