diff options
| author | Cheng-Yang Chou <yphbchou0911@gmail.com> | 2026-03-14 07:20:51 +0300 |
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2026-03-14 12:01:06 +0300 |
| commit | c959218c6533cf7e373cb5ccddb93f582ee5d47b (patch) | |
| tree | ce78c55ee6b77ad9b4789bb343cfea0c610c49d5 | |
| parent | e36bc38ebfac95ecd088d4bc0ceb3ffcef2ebdfa (diff) | |
| download | linux-c959218c6533cf7e373cb5ccddb93f582ee5d47b.tar.xz | |
sched_ext/selftests: Fix incorrect include guard comments
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>
| -rw-r--r-- | tools/testing/selftests/sched_ext/exit_test.h | 2 | ||||
| -rw-r--r-- | tools/testing/selftests/sched_ext/util.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/sched_ext/exit_test.h b/tools/testing/selftests/sched_ext/exit_test.h index 94f0268b9cb8..2723e0fda801 100644 --- a/tools/testing/selftests/sched_ext/exit_test.h +++ b/tools/testing/selftests/sched_ext/exit_test.h @@ -17,4 +17,4 @@ enum exit_test_case { NUM_EXITS, }; -#endif // # __EXIT_TEST_H__ +#endif // __EXIT_TEST_H__ diff --git a/tools/testing/selftests/sched_ext/util.h b/tools/testing/selftests/sched_ext/util.h index bc13dfec1267..681cec04b439 100644 --- a/tools/testing/selftests/sched_ext/util.h +++ b/tools/testing/selftests/sched_ext/util.h @@ -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__ |
