From: Simon Glass Date: Sun, 14 Jun 2020 14:48:39 +0000 (-0600) Subject: dm: core: Correct comment on uclass_id_foreach_dev() X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=b48c272b1a52311b8afc187e1028e83b02a90a6f;p=u-boot.git dm: core: Correct comment on uclass_id_foreach_dev() This parameter should be a struct uclass, not struct udevice. Correct it. Signed-off-by: Simon Glass Reviewed-By: Michael Trimarchi --- diff --git a/include/dm/uclass.h b/include/dm/uclass.h index 70fca79b44..67ff7466c8 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -390,7 +390,7 @@ int uclass_resolve_seq(struct udevice *dev); * @id: enum uclass_id ID to use * @pos: struct udevice * to hold the current device. Set to NULL when there * are no more devices. - * @uc: temporary uclass variable (struct udevice *) + * @uc: temporary uclass variable (struct uclass *) */ #define uclass_id_foreach_dev(id, pos, uc) \ if (!uclass_get(id, &uc)) \