Ariel Otilibili has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85788?usp=email )
Change subject: tests: Replace 'unsigned long int' by 'unsigned long' ......................................................................
tests: Replace 'unsigned long int' by 'unsigned long'
As suggested by the linter:
Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary
Link: https://qa.coreboot.org/job/coreboot-untested-files/lastSuccessfulBuild/arti... Cc: Jakub Czapiga czapiga@google.com Change-Id: Ia41f0674f4abab285d89ed5101b3805975f3f381 Signed-off-by: Ariel Otilibili otilibil@eurecom.fr --- M tests/device/i2c-test.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/88/85788/1
diff --git a/tests/device/i2c-test.c b/tests/device/i2c-test.c index 4b96d94..36b9e4a 100644 --- a/tests/device/i2c-test.c +++ b/tests/device/i2c-test.c @@ -80,7 +80,7 @@
static void mock_expect_params_platform_i2c_transfer(void) { - unsigned long int expected_flags[] = {0, I2C_M_RD, I2C_M_TEN, I2C_M_RECV_LEN, + unsigned long expected_flags[] = {0, I2C_M_RD, I2C_M_TEN, I2C_M_RECV_LEN, I2C_M_NOSTART};
/* Flags should always be only within supported range */