[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1503504425-22808-1-git-send-email-benjamin.gaignard@linaro.org>
Date: Wed, 23 Aug 2017 18:07:05 +0200
From: Benjamin Gaignard <benjamin.gaignard@...aro.org>
To: john.stultz@...aro.org, tglx@...utronix.de, sboyd@...eaurora.org,
shuah@...nel.org, linux-kernel@...r.kernel.org,
linux-kselftest@...r.kernel.org
Cc: Benjamin Gaignard <benjamin.gaignard@...aro.org>
Subject: [PATCH] selftests/timers: make loop consistent with array size
clocksource_list array is defined as char [10][30] so
to initialise it we only have to iterate 10 times.
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@...aro.org>
---
tools/testing/selftests/timers/clocksource-switch.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/timers/clocksource-switch.c b/tools/testing/selftests/timers/clocksource-switch.c
index 5ff1653..56fbfc1 100644
--- a/tools/testing/selftests/timers/clocksource-switch.c
+++ b/tools/testing/selftests/timers/clocksource-switch.c
@@ -61,7 +61,7 @@ int get_clocksources(char list[][30])
close(fd);
- for (i = 0; i < 30; i++)
+ for (i = 0; i < 10; i++)
list[i][0] = '\0';
head = buf;
--
2.7.4
Powered by blists - more mailing lists