From: Michal Suchanek Date: Wed, 12 Oct 2022 19:58:05 +0000 (+0200) Subject: dm: core: Switch uclass_foreach_dev_probe to use simple iterator X-Git-Tag: v2023.07~296^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=801f71194c54c75e90d723b9be3434b6354fce71;p=platform%2Fkernel%2Fu-boot.git dm: core: Switch uclass_foreach_dev_probe to use simple iterator The return value is not used for anythig, and in a later patch the behavior of the _err iterator will change in an incompatible way. Signed-off-by: Michal Suchanek Reviewed-by: Simon Glass Update pvblock_probe() to avoid using internal var: Signed-off-by: Simon Glass --- diff --git a/drivers/xen/pvblock.c b/drivers/xen/pvblock.c index 970182c..95e298d 100644 --- a/drivers/xen/pvblock.c +++ b/drivers/xen/pvblock.c @@ -852,10 +852,7 @@ static int pvblock_probe(struct udevice *udev) ret = uclass_get(UCLASS_BLK, &uc); if (ret) return ret; - uclass_foreach_dev_probe(UCLASS_BLK, udev) { - if (_ret) - return _ret; - }; + uclass_foreach_dev_probe(UCLASS_BLK, udev); return 0; } diff --git a/include/dm/uclass.h b/include/dm/uclass.h index f6c0110..990e9c0 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -491,7 +491,7 @@ int uclass_id_count(enum uclass_id id); * are no more devices. */ #define uclass_foreach_dev_probe(id, dev) \ - for (int _ret = uclass_first_device_err(id, &dev); !_ret && dev; \ - _ret = uclass_next_device_err(&dev)) + for (uclass_first_device(id, &dev); dev; \ + uclass_next_device(&dev)) #endif