From c026231e15fa634c6865c2f8d2317d973b4cc4b4 Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Thu, 11 Jul 2019 11:23:44 +0300 Subject: [PATCH] dm: uclass: fix comment copy/paste error The uclass_next_device() routine continues a previously started device iteration. Change the description that is copied from uclass_first_device(). Signed-off-by: Baruch Siach Reviewed-by: Simon Glass --- include/dm/uclass.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dm/uclass.h b/include/dm/uclass.h index 1bc62d523e..484d166013 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -297,7 +297,7 @@ int uclass_first_device_err(enum uclass_id id, struct udevice **devp); * * The device returned is probed if necessary, and ready for use * - * This function is useful to start iterating through a list of devices which + * This function is useful to iterate through a list of devices which * are functioning correctly and can be probed. * * @devp: On entry, pointer to device to lookup. On exit, returns pointer -- 2.25.1