dm: treewide: Use uclass_first_device_err when accessing one device
authorMichal Suchanek <msuchanek@suse.de>
Wed, 12 Oct 2022 19:57:59 +0000 (21:57 +0200)
committerSimon Glass <sjg@chromium.org>
Tue, 18 Oct 2022 03:17:12 +0000 (21:17 -0600)
commitc726fc01cf669e3e2979da8665ef660e7d3ba464
tree5d11dc2d0e58fac8a08cb1e2425ff0ae10ad0a8a
parent8676ae36ae4617b20b5cc49972c54c63c7b27bb3
dm: treewide: Use uclass_first_device_err when accessing one device

There is a number of users that use uclass_first_device to access the
first and (assumed) only device in uclass.

Some check the return value of uclass_first_device and also that a
device was returned which is exactly what uclass_first_device_err does.

Some are not checking that a device was returned and can potentially
crash if no device exists in the uclass. Finally there is one that
returns NULL on error either way.

Convert all of these to use uclass_first_device_err instead, the return
value will be removed from uclass_first_device in a later patch.

Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
25 files changed:
arch/arm/mach-omap2/am33xx/board.c
arch/x86/cpu/broadwell/cpu.c
arch/x86/cpu/intel_common/cpu.c
arch/x86/lib/pinctrl_ich6.c
board/intel/cougarcanyon2/cougarcanyon2.c
drivers/mmc/omap_hsmmc.c
drivers/serial/serial-uclass.c
drivers/serial/serial_bcm283x_mu.c
drivers/serial/serial_bcm283x_pl011.c
drivers/sysreset/sysreset_ast.c
drivers/video/exynos/exynos_fb.c
drivers/video/mali_dp.c
drivers/video/stm32/stm32_dsi.c
drivers/video/tegra124/dp.c
lib/acpi/acpi_table.c
lib/efi_loader/efi_gop.c
net/eth-uclass.c
test/boot/bootmeth.c
test/dm/acpi.c
test/dm/devres.c
test/dm/i2c.c
test/dm/virtio_device.c
test/dm/virtio_rng.c
test/fuzz/cmd_fuzz.c
test/fuzz/virtio.c