forked from OERV-BSP/u-boot
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>
This commit is contained in:
committed by
Simon Glass
parent
8676ae36ae
commit
c726fc01cf
@@ -22,7 +22,7 @@ static int dm_test_virtio_base(struct unit_test_state *uts)
|
||||
u8 status;
|
||||
|
||||
/* check probe success */
|
||||
ut_assertok(uclass_first_device(UCLASS_VIRTIO, &bus));
|
||||
ut_assertok(uclass_first_device_err(UCLASS_VIRTIO, &bus));
|
||||
ut_assertnonnull(bus);
|
||||
|
||||
/* check the child virtio-rng device is bound */
|
||||
@@ -60,7 +60,7 @@ static int dm_test_virtio_all_ops(struct unit_test_state *uts)
|
||||
struct virtqueue *vqs[2];
|
||||
|
||||
/* check probe success */
|
||||
ut_assertok(uclass_first_device(UCLASS_VIRTIO, &bus));
|
||||
ut_assertok(uclass_first_device_err(UCLASS_VIRTIO, &bus));
|
||||
ut_assertnonnull(bus);
|
||||
|
||||
/* check the child virtio-rng device is bound */
|
||||
@@ -102,7 +102,7 @@ static int dm_test_virtio_remove(struct unit_test_state *uts)
|
||||
struct udevice *bus, *dev;
|
||||
|
||||
/* check probe success */
|
||||
ut_assertok(uclass_first_device(UCLASS_VIRTIO, &bus));
|
||||
ut_assertok(uclass_first_device_err(UCLASS_VIRTIO, &bus));
|
||||
ut_assertnonnull(bus);
|
||||
|
||||
/* check the child virtio-rng device is bound */
|
||||
@@ -134,7 +134,7 @@ static int dm_test_virtio_ring(struct unit_test_state *uts)
|
||||
u8 buffer[2][32];
|
||||
|
||||
/* check probe success */
|
||||
ut_assertok(uclass_first_device(UCLASS_VIRTIO, &bus));
|
||||
ut_assertok(uclass_first_device_err(UCLASS_VIRTIO, &bus));
|
||||
ut_assertnonnull(bus);
|
||||
|
||||
/* check the child virtio-blk device is bound */
|
||||
|
||||
Reference in New Issue
Block a user