summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-07-18 02:36:18 +0200
committerAnastasia Klimchuk <aklm@chromium.org>2022-07-22 01:26:25 +0000
commite6e4ca5fe48989539a26e30417688757cfd6bf75 (patch)
tree1bea094031740fdacfe20ba0dd800f41c36ffde4 /tests
parenta2fc6185e68c1b5639abe2bfbfc915731cb2c5a9 (diff)
downloadflashrom-e6e4ca5fe48989539a26e30417688757cfd6bf75.tar.gz
flashrom-e6e4ca5fe48989539a26e30417688757cfd6bf75.tar.bz2
flashrom-e6e4ca5fe48989539a26e30417688757cfd6bf75.zip
realtek_mst_i2c_spi: Use underscores for parameters instead hyphens
realtek_mst_i2c_spi is the only programmer which uses hyphens instead of underscores in its parameter names. Thus, for consistency, rename the parameters so that they use underscores. Signed-off-by: Felix Singer <felixsinger@posteo.net> Change-Id: I5ff6d8d432d875670fcaa2088e9cf9d9f1b83dc2 Reviewed-on: https://review.coreboot.org/c/flashrom/+/65935 Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-by: Peter Marheine <pmarheine@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Thomas Heijligen <src@posteo.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/realtek_mst_i2c_spi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/realtek_mst_i2c_spi.c b/tests/realtek_mst_i2c_spi.c
index 3b004cbee..85ebc13c2 100644
--- a/tests/realtek_mst_i2c_spi.c
+++ b/tests/realtek_mst_i2c_spi.c
@@ -56,7 +56,7 @@ void realtek_mst_basic_lifecycle_test_success(void **state)
.fallback_open_state = &realtek_mst_fallback_open_state,
};
- run_basic_lifecycle(state, &realtek_mst_io, &programmer_realtek_mst_i2c_spi, "bus=254,enter-isp=0,allow-brick=yes");
+ run_basic_lifecycle(state, &realtek_mst_io, &programmer_realtek_mst_i2c_spi, "bus=254,enter_isp=0,allow_brick=yes");
}
#else
SKIP_TEST(realtek_mst_basic_lifecycle_test_success)