summaryrefslogtreecommitdiff
path: root/include/dm/uclass.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-08-03 01:14:34 -0700
committerSimon Glass <sjg@chromium.org>2018-08-08 12:49:31 +0100
commitd494131bc6a709a0fc0b12bf6a975af3de27a6e8 (patch)
tree90bf1455720be68940000fc8ba8aa3da8bd23e95 /include/dm/uclass.h
parent01259c93904fcffc4d127219145ecb0d44fa5ae1 (diff)
dm: Correct typos in uclass_first/next_device_check()
Correct typos in the comment block of uclass_first/next_device_check(). Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/uclass.h')
-rw-r--r--include/dm/uclass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dm/uclass.h b/include/dm/uclass.h
index 9fbaa7d81a..0e882cec59 100644
--- a/include/dm/uclass.h
+++ b/include/dm/uclass.h
@@ -302,7 +302,7 @@ int uclass_first_device_err(enum uclass_id id, struct udevice **devp);
int uclass_next_device(struct udevice **devp);
/**
- * uclass_first_device() - Get the first device in a uclass
+ * uclass_first_device_check() - Get the first device in a uclass
*
* The device returned is probed if necessary, and ready for use
*
@@ -318,7 +318,7 @@ int uclass_next_device(struct udevice **devp);
int uclass_first_device_check(enum uclass_id id, struct udevice **devp);
/**
- * uclass_next_device() - Get the next device in a uclass
+ * uclass_next_device_check() - Get the next device in a uclass
*
* The device returned is probed if necessary, and ready for use
*