]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
sched_ext/selftests: Fix incorrect include guard comments
authorCheng-Yang Chou <yphbchou0911@gmail.com>
Sat, 14 Mar 2026 04:20:51 +0000 (12:20 +0800)
committerTejun Heo <tj@kernel.org>
Sat, 14 Mar 2026 09:01:06 +0000 (23:01 -1000)
Fix two mismatched closing comments in header include guards:

- util.h: closing comment says __SCX_TEST_H__ but the guard is
  __SCX_TEST_UTIL_H__
- exit_test.h: closing comment has a spurious '#' character before
  the guard name

Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
tools/testing/selftests/sched_ext/exit_test.h
tools/testing/selftests/sched_ext/util.h

index 94f0268b9cb8e5db6cb025c90fb93d14b6a05ce2..2723e0fda801f080d9226113ae3474ec934a46cf 100644 (file)
@@ -17,4 +17,4 @@ enum exit_test_case {
        NUM_EXITS,
 };
 
-#endif  // __EXIT_TEST_H__
+#endif  // __EXIT_TEST_H__
index bc13dfec1267aa5144ae19c17aff63c9ed91e279..681cec04b43955a2fd5eb8b30c71ba3c9405979c 100644 (file)
@@ -10,4 +10,4 @@
 long file_read_long(const char *path);
 int file_write_long(const char *path, long val);
 
-#endif // __SCX_TEST_H__
+#endif // __SCX_TEST_UTIL_H__