diff options
| author | Tom Rini <[email protected]> | 2024-08-23 15:59:03 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-23 15:59:03 -0600 |
| commit | 5948fd0ae7a86af6e2b6a5227005b92ad2ab67d8 (patch) | |
| tree | e531925228a2bf543e8376de5ae1a625d9a8d0aa /test/cmd | |
| parent | b8f0f8db23f77a5e2437c7df411a78da71fab13a (diff) | |
| parent | d938743d15a9bbe46353d15f16fb4b764e1462b7 (diff) | |
Merge patch series "spl: mmc: Some tweaks for SPL, particularly with MMC"
Simon Glass <[email protected]> says:
This series includes various minor fixes and tweaks found when trying
to reduce the size of MMC code in SPL.
Diffstat (limited to 'test/cmd')
| -rw-r--r-- | test/cmd/pinmux.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/cmd/pinmux.c b/test/cmd/pinmux.c index 4253baa5646..7ab7004b684 100644 --- a/test/cmd/pinmux.c +++ b/test/cmd/pinmux.c @@ -30,7 +30,13 @@ static int dm_test_cmd_pinmux_status_pinname(struct unit_test_state *uts) console_record_reset(); run_command("pinmux status P9", 0); - ut_assert_nextlinen("single-pinctrl pinctrl-single-no-width: missing register width"); + if (IS_ENABLED(CONFIG_LOGF_FUNC)) { + ut_assert_nextlinen( + " single_of_to_plat() single-pinctrl pinctrl-single-no-width: missing register width"); + } else { + ut_assert_nextlinen( + "single-pinctrl pinctrl-single-no-width: missing register width"); + } ut_assert_nextlinen("P9 not found"); ut_assert_console_end(); |
