mirror of
https://github.com/smaeul/u-boot.git
synced 2025-11-28 14:52:28 +00:00
dm: test: Drop assumptions of no sequence numbers
Drop code in a few tests which assumes that sequence numbers are only valid when a device is probed. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4153e3a5fb
commit
a20b4a8cfb
@ -19,9 +19,6 @@ static int dm_test_blk_base(struct unit_test_state *uts)
|
|||||||
{
|
{
|
||||||
struct udevice *blk1, *blk3, *dev;
|
struct udevice *blk1, *blk3, *dev;
|
||||||
|
|
||||||
/* Make sure there are no block devices */
|
|
||||||
ut_asserteq(-ENODEV, uclass_get_device_by_seq(UCLASS_BLK, 0, &dev));
|
|
||||||
|
|
||||||
/* Create two, one the parent of the other */
|
/* Create two, one the parent of the other */
|
||||||
ut_assertok(blk_create_device(gd->dm_root, "sandbox_host_blk", "test",
|
ut_assertok(blk_create_device(gd->dm_root, "sandbox_host_blk", "test",
|
||||||
IF_TYPE_HOST, 1, 512, 2, &blk1));
|
IF_TYPE_HOST, 1, 512, 2, &blk1));
|
||||||
|
|||||||
@ -28,9 +28,6 @@ static int dm_test_i2c_find(struct unit_test_state *uts)
|
|||||||
struct udevice *bus, *dev;
|
struct udevice *bus, *dev;
|
||||||
const int no_chip = 0x10;
|
const int no_chip = 0x10;
|
||||||
|
|
||||||
ut_asserteq(-ENODEV, uclass_find_device_by_seq(UCLASS_I2C, busnum,
|
|
||||||
false, &bus));
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The post_bind() method will bind devices to chip selects. Check
|
* The post_bind() method will bind devices to chip selects. Check
|
||||||
* this then remove the emulation and the slave device.
|
* this then remove the emulation and the slave device.
|
||||||
|
|||||||
@ -26,9 +26,6 @@ static int dm_test_spi_find(struct unit_test_state *uts)
|
|||||||
struct spi_cs_info info;
|
struct spi_cs_info info;
|
||||||
ofnode node;
|
ofnode node;
|
||||||
|
|
||||||
ut_asserteq(-ENODEV, uclass_find_device_by_seq(UCLASS_SPI, busnum,
|
|
||||||
false, &bus));
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The post_bind() method will bind devices to chip selects. Check
|
* The post_bind() method will bind devices to chip selects. Check
|
||||||
* this then remove the emulation and the slave device.
|
* this then remove the emulation and the slave device.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user