bootstd: Fix listing boot devices
authorMichal Suchanek <msuchanek@suse.de>
Wed, 12 Oct 2022 19:57:53 +0000 (21:57 +0200)
committerSimon Glass <sjg@chromium.org>
Tue, 18 Oct 2022 03:17:12 +0000 (21:17 -0600)
commit28a22cd9a482b947b21646ae595e3284cdea3002
tree59a2736c2065d68a79cbcc951a67d1729dec7f4b
parent5afe93a18c92a5f08dc6d38c4525e378ffb5067a
bootstd: Fix listing boot devices

bootdev_list() uses uclass_*_device_err() to iterate devices.
However, the only value _err adds is returning an error when the device
pointer is null, and that's checked anyway.

Also there is some intent to report errors, and that's what
uclass_*_device_check() is for, use it.

Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
boot/bootdev-uclass.c