diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-09-07 07:51:52 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-09-18 13:27:10 -0600 |
commit | 75629a25087cd9897305375421abe2248bc40e72 (patch) | |
tree | 8ec715faf9e5891cc38d5bfc67abb0cd692f8607 /include/dm/uclass.h | |
parent | 138c8a75620702ff0a7bb08147d5b98c0ddb5d1b (diff) | |
download | u-boot-75629a25087cd9897305375421abe2248bc40e72.tar.gz u-boot-75629a25087cd9897305375421abe2248bc40e72.tar.xz u-boot-75629a25087cd9897305375421abe2248bc40e72.zip |
dm: uclass: Adding missing child_pre_probe description
The comment of child_pre_probe, one of the 'struct uclass_driver'
members, is currently missing.
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.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/uclass.h b/include/dm/uclass.h index 0e882cec59..6e7c1cd3e8 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -58,6 +58,7 @@ struct udevice; * @post_probe: Called after a new device is probed * @pre_remove: Called before a device is removed * @child_post_bind: Called after a child is bound to a device in this uclass + * @child_pre_probe: Called before a child is probed in this uclass * @init: Called to set up the uclass * @destroy: Called to destroy the uclass * @priv_auto_alloc_size: If non-zero this is the size of the private data |