Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1695730
| From | Santosh Sivaraj <santosh@fossix.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2] kselftest/timers: fix build failure |
| Date | 2017-07-25 15:40 +0200 |
| Message-ID | <u78e6-3nc-13@gated-at.bofh.it> (permalink) |
| References | <u77rI-2RA-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Pass missing parameter to ksft_exit_skip.
Signed-off-by: Santosh Sivaraj <santosh@fossix.org>
---
V2 update: Pass NULL as suggested by Miroslav Lichvar
tools/testing/selftests/timers/freq-step.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/timers/freq-step.c b/tools/testing/selftests/timers/freq-step.c
index e8c6183..deff065 100644
--- a/tools/testing/selftests/timers/freq-step.c
+++ b/tools/testing/selftests/timers/freq-step.c
@@ -231,7 +231,7 @@ static void init_test(void)
if (precision > MAX_PRECISION) {
printf("[SKIP]\n");
- ksft_exit_skip();
+ ksft_exit_skip(NULL);
}
printf("[OK]\n");
--
2.9.4
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] kselftest/timers: fix build failure Santosh Sivaraj <santosh@fossix.org> - 2017-07-25 10:00 +0200
Re: [PATCH] kselftest/timers: fix build failure Miroslav Lichvar <mlichvar@redhat.com> - 2017-07-25 14:50 +0200
[PATCH v2] kselftest/timers: fix build failure Santosh Sivaraj <santosh@fossix.org> - 2017-07-25 15:40 +0200
csiph-web