mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-24 19:02:14 +01:00
test: dm: skip scmi tests against disabled protocols
This is a precautionary change to make scmi tests workable whether or not a specific protocol be enabled. If a given protocol is not configured, we skip the test by returning -EAGAIN. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
0d4d9f94c5
commit
63cd0dceea
@ -217,6 +217,9 @@ static int dm_test_scmi_power_domains(struct unit_test_state *uts)
|
||||
u8 *name;
|
||||
int ret;
|
||||
|
||||
if (!CONFIG_IS_ENABLED(SCMI_POWER_DOMAIN))
|
||||
return -EAGAIN;
|
||||
|
||||
/* preparation */
|
||||
ut_assertok(load_sandbox_scmi_test_devices(uts, &agent, &dev));
|
||||
ut_assertnonnull(agent);
|
||||
@ -317,6 +320,9 @@ static int dm_test_scmi_clocks(struct unit_test_state *uts)
|
||||
int ret_dev;
|
||||
int ret;
|
||||
|
||||
if (!CONFIG_IS_ENABLED(CLK_SCMI))
|
||||
return -EAGAIN;
|
||||
|
||||
ret = load_sandbox_scmi_test_devices(uts, &agent, &dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
@ -382,6 +388,9 @@ static int dm_test_scmi_resets(struct unit_test_state *uts)
|
||||
struct udevice *agent_dev, *reset_dev, *dev = NULL;
|
||||
int ret;
|
||||
|
||||
if (!CONFIG_IS_ENABLED(RESET_SCMI))
|
||||
return -EAGAIN;
|
||||
|
||||
ret = load_sandbox_scmi_test_devices(uts, &agent, &dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
@ -418,6 +427,9 @@ static int dm_test_scmi_voltage_domains(struct unit_test_state *uts)
|
||||
struct udevice *dev;
|
||||
struct udevice *regul0_dev;
|
||||
|
||||
if (!CONFIG_IS_ENABLED(DM_REGULATOR_SCMI))
|
||||
return -EAGAIN;
|
||||
|
||||
ut_assertok(load_sandbox_scmi_test_devices(uts, &agent, &dev));
|
||||
|
||||
scmi_devices = sandbox_scmi_devices_ctx(dev);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user