commit | 27c0e171197b509c75b406b20e7be79954f60d5e | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Thu Feb 06 09:54:49 2020 -0700 |
committer | Bin Meng <bmeng.cn@gmail.com> | Fri Feb 07 22:41:24 2020 +0800 |
tree | e0c877fe00a53ee5467e0d59147a858eb99ac17c | |
parent | 21fae58cefade5fcc4cc21ce2c6b0ad64cabcc1e [diff] |
dm: core: Allow iterating devices without uclass_get() At present we have uclass_foreach_dev() which requires that uclass_get() be called beforehand to find the uclass. This is good if we suspect that that function might fail, but often we know that the uclass is available. Add a new helper which does this uclass_get() automatically, so that only the uclass ID is needed. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>