diff options
| author | Simon Glass <sjg@chromium.org> | 2021-08-18 21:40:29 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2021-09-16 13:19:25 -0400 |
| commit | 79b3f367304dc743518200eb6b82556890c9ae05 (patch) | |
| tree | 1cbf4a59c2394b87dbf6c2b8a874347c730cc621 /include/dm/device.h | |
| parent | 127ca104677e5dd0ac4d5d991faa2ebb704da6f1 (diff) | |
dm: core: Fix a few incorrect comments on first/next functions
Tighten up these comments to make the behaviour clearer.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/device.h')
| -rw-r--r-- | include/dm/device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dm/device.h b/include/dm/device.h index 0a9718a5b81..ef6241bca8b 100644 --- a/include/dm/device.h +++ b/include/dm/device.h @@ -738,7 +738,7 @@ int device_find_next_child(struct udevice **devp); * * @parent: Parent device to search * @uclass_id: Uclass to look for - * @devp: Returns device found, if any + * @devp: Returns device found, if any, else NULL * @return 0 if found, else -ENODEV */ int device_find_first_inactive_child(const struct udevice *parent, @@ -750,7 +750,7 @@ int device_find_first_inactive_child(const struct udevice *parent, * * @parent: Parent device to search * @uclass_id: Uclass to look for - * @devp: Returns first child device in that uclass, if any + * @devp: Returns first child device in that uclass, if any, else NULL * @return 0 if found, else -ENODEV */ int device_find_first_child_by_uclass(const struct udevice *parent, |
