* [PATCH] selftests: timers: rtcpie: Fix checkpatch reported errors
@ 2025-05-24 18:30 Thushara.M.S
0 siblings, 0 replies; only message in thread
From: Thushara.M.S @ 2025-05-24 18:30 UTC (permalink / raw)
To: jstultz, tglx, sboyd, anna-maria, frederic, shuah, linux-kernel
Cc: linux-kselftest, Thushara.M.S
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@gmail.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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-05-24 18:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-24 18:30 [PATCH] selftests: timers: rtcpie: Fix checkpatch reported errors Thushara.M.S
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox