linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] selftests: timers: remove unneeded semicolon
@ 2021-02-23  6:23 Jiapeng Chong
  0 siblings, 0 replies; 5+ messages in thread
From: Jiapeng Chong @ 2021-02-23  6:23 UTC (permalink / raw)
  To: john.stultz
  Cc: tglx, sboyd, shuah, linux-kernel, linux-kselftest, Jiapeng Chong

Fix the following coccicheck warnings:

./tools/testing/selftests/timers/alarmtimer-suspend.c:82:2-3: Unneeded
semicolon.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 tools/testing/selftests/timers/alarmtimer-suspend.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/timers/alarmtimer-suspend.c b/tools/testing/selftests/timers/alarmtimer-suspend.c
index 4da09db..54da4b08 100644
--- a/tools/testing/selftests/timers/alarmtimer-suspend.c
+++ b/tools/testing/selftests/timers/alarmtimer-suspend.c
@@ -79,7 +79,7 @@ char *clockstring(int clockid)
 		return "CLOCK_BOOTTIME_ALARM";
 	case CLOCK_TAI:
 		return "CLOCK_TAI";
-	};
+	}
 	return "UNKNOWN_CLOCKID";
 }
 
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] selftests: timers: Remove unneeded semicolon
       [not found] <20230614082010.28632-1-luojianhong@cdjrlc.com>
@ 2023-06-14  8:22 ` baomingtong001
  0 siblings, 0 replies; 5+ messages in thread
From: baomingtong001 @ 2023-06-14  8:22 UTC (permalink / raw)
  To: jstultz, tglx, sboyd, shuah; +Cc: linux-kernel, linux-kselftest

tools/testing/selftests/timers/nanosleep.c:75:2-3: Unneeded semicolon

Signed-off-by: Mingtong Bao <baomingtong001@208suo.com>
---
  tools/testing/selftests/timers/nanosleep.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/timers/nanosleep.c 
b/tools/testing/selftests/timers/nanosleep.c
index df1d03516e7b..34e61507fa1f 100644
--- a/tools/testing/selftests/timers/nanosleep.c
+++ b/tools/testing/selftests/timers/nanosleep.c
@@ -72,7 +72,7 @@ char *clockstring(int clockid)
          return "CLOCK_BOOTTIME_ALARM";
      case CLOCK_TAI:
          return "CLOCK_TAI";
-    };
+    }
      return "UNKNOWN_CLOCKID";
  }

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] selftests: timers: Remove unneeded semicolon
@ 2021-11-05  1:42 cgel.zte
  0 siblings, 0 replies; 5+ messages in thread
From: cgel.zte @ 2021-11-05  1:42 UTC (permalink / raw)
  To: john.stultz
  Cc: tglx, sboyd, shuah, linux-kernel, linux-kselftest, Zhang Mingyu,
	Zeal Robot

From: Zhang Mingyu <zhang.mingyu@zte.com.cn>

Eliminate the following coccinelle check warning:
tools/testing/selftests/timers/inconsistency-check.c:75:2-3

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Zhang Mingyu <zhang.mingyu@zte.com.cn>
---
 tools/testing/selftests/timers/inconsistency-check.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/timers/inconsistency-check.c b/tools/testing/selftests/timers/inconsistency-check.c
index 022d3ffe3fbf..e6756d9c60a7 100644
--- a/tools/testing/selftests/timers/inconsistency-check.c
+++ b/tools/testing/selftests/timers/inconsistency-check.c
@@ -72,7 +72,7 @@ char *clockstring(int clockid)
 		return "CLOCK_BOOTTIME_ALARM";
 	case CLOCK_TAI:
 		return "CLOCK_TAI";
-	};
+	}
 	return "UNKNOWN_CLOCKID";
 }
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] selftests: timers: remove unneeded semicolon
  2021-03-15  8:07 Jiapeng Chong
@ 2021-03-15 18:43 ` John Stultz
  0 siblings, 0 replies; 5+ messages in thread
From: John Stultz @ 2021-03-15 18:43 UTC (permalink / raw)
  To: Jiapeng Chong
  Cc: Thomas Gleixner, Stephen Boyd, Shuah Khan, lkml, linux-kselftest

On Mon, Mar 15, 2021 at 1:08 AM Jiapeng Chong
<jiapeng.chong@linux.alibaba.com> wrote:
>
> Fix the following coccicheck warnings:
>
> ./tools/testing/selftests/timers/inconsistency-check.c:75:2-3: Unneeded
> semicolon.
>
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>

No objection here. Thanks for sending this along.

Acked-by: John Stultz <john.stultz@linaro.org>

thanks
-john

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] selftests: timers: remove unneeded semicolon
@ 2021-03-15  8:07 Jiapeng Chong
  2021-03-15 18:43 ` John Stultz
  0 siblings, 1 reply; 5+ messages in thread
From: Jiapeng Chong @ 2021-03-15  8:07 UTC (permalink / raw)
  To: john.stultz
  Cc: tglx, sboyd, shuah, linux-kernel, linux-kselftest, Jiapeng Chong

Fix the following coccicheck warnings:

./tools/testing/selftests/timers/inconsistency-check.c:75:2-3: Unneeded
semicolon.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 tools/testing/selftests/timers/inconsistency-check.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/timers/inconsistency-check.c b/tools/testing/selftests/timers/inconsistency-check.c
index 022d3ff..e6756d9 100644
--- a/tools/testing/selftests/timers/inconsistency-check.c
+++ b/tools/testing/selftests/timers/inconsistency-check.c
@@ -72,7 +72,7 @@ char *clockstring(int clockid)
 		return "CLOCK_BOOTTIME_ALARM";
 	case CLOCK_TAI:
 		return "CLOCK_TAI";
-	};
+	}
 	return "UNKNOWN_CLOCKID";
 }
 
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-06-14  8:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-23  6:23 [PATCH] selftests: timers: remove unneeded semicolon Jiapeng Chong
2021-03-15  8:07 Jiapeng Chong
2021-03-15 18:43 ` John Stultz
2021-11-05  1:42 [PATCH] selftests: timers: Remove " cgel.zte
     [not found] <20230614082010.28632-1-luojianhong@cdjrlc.com>
2023-06-14  8:22 ` baomingtong001

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).