]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
dm: core: Improve comments for uclass_first/next_device()
authorSimon Glass <sjg@chromium.org>
Sun, 25 Jan 2015 15:26:57 +0000 (08:26 -0700)
committerSimon Glass <sjg@chromium.org>
Fri, 30 Jan 2015 00:09:54 +0000 (17:09 -0700)
Mention that the devices are probed ready for use.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/dm/uclass.h

index f6ec6d7e9f62f7551b869f1eb7b188e8587b44ee..2577ae6489bbf45af3ba365536250e43a49b648e 100644 (file)
@@ -141,6 +141,8 @@ int uclass_get_device_by_of_offset(enum uclass_id id, int node,
 /**
  * uclass_first_device() - Get the first device in a uclass
  *
+ * The device returned is probed if necessary, and ready for use
+ *
  * @id: Uclass ID to look up
  * @devp: Returns pointer to the first device in that uclass, or NULL if none
  * @return 0 if OK (found or not found), -1 on error
@@ -150,6 +152,8 @@ int uclass_first_device(enum uclass_id id, struct udevice **devp);
 /**
  * uclass_next_device() - Get the next device in a uclass
  *
+ * The device returned is probed if necessary, and ready for use
+ *
  * @devp: On entry, pointer to device to lookup. On exit, returns pointer
  * to the next device in the same uclass, or NULL if none
  * @return 0 if OK (found or not found), -1 on error