[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250524183011.114490-1-thusharms@gmail.com>
Date: Sat, 24 May 2025 18:30:11 +0000
From: "Thushara.M.S" <thusharms@...il.com>
To: jstultz@...gle.com,
tglx@...utronix.de,
sboyd@...nel.org,
anna-maria@...utronix.de,
frederic@...nel.org,
shuah@...nel.org,
linux-kernel@...r.kernel.org
Cc: linux-kselftest@...r.kernel.org,
"Thushara.M.S" <thusharms@...il.com>
Subject: [PATCH] selftests: timers: rtcpie: Fix checkpatch reported errors
Errors reported:
ERROR: spaces required around that '=' (ctx:VxV)
ERROR: spaces required around that '<=' (ctx:VxV)
ERROR: spaces required around that '*=' (ctx:VxV)
ERROR: spaces required around that '=' (ctx:VxV)
ERROR: spaces required around that '<' (ctx:VxV)
ERROR: space required after that ',' (ctx:VxV)
total: 6 errors, 0 warnings, 141 lines checked
Signed-off-by: Thushara.M.S <thusharms@...il.com>
---
tools/testing/selftests/timers/rtcpie.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/testing/selftests/timers/rtcpie.c b/tools/testing/selftests/timers/rtcpie.c
index 7c07edd0d450..aa5a20fd8df2 100644
--- a/tools/testing/selftests/timers/rtcpie.c
+++ b/tools/testing/selftests/timers/rtcpie.c
@@ -75,7 +75,7 @@ int main(int argc, char **argv)
fflush(stderr);
/* The frequencies 128Hz, 256Hz, ... 8192Hz are only allowed for root. */
- for (tmp=2; tmp<=64; tmp*=2) {
+ for (tmp = 2; tmp <= 64; tmp *= 2) {
retval = ioctl(fd, RTC_IRQP_SET, tmp);
if (retval == -1) {
@@ -99,7 +99,7 @@ int main(int argc, char **argv)
exit(errno);
}
- for (i=1; i<21; i++) {
+ for (i = 1; i < 21; i++) {
gettimeofday(&start, NULL);
/* This blocks */
retval = read(fd, &data, sizeof(unsigned long));
@@ -118,7 +118,7 @@ int main(int argc, char **argv)
exit(-1);
}
- fprintf(stderr, " %d",i);
+ fprintf(stderr, " %d", i);
fflush(stderr);
}
--
2.43.0
Powered by blists - more mailing lists