Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752081AbdGYNcR (ORCPT ); Tue, 25 Jul 2017 09:32:17 -0400 Received: from mail-pf0-f194.google.com ([209.85.192.194]:35194 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750980AbdGYNcQ (ORCPT ); Tue, 25 Jul 2017 09:32:16 -0400 From: Santosh Sivaraj To: linux-kernel@vger.kernel.org Cc: Miroslav Lichvar , John Stultz , Ingo Molnar , Thomas Gleixner Subject: [PATCH v2] kselftest/timers: fix build failure Date: Tue, 25 Jul 2017 19:02:05 +0530 Message-Id: <20170725133205.508-1-santosh@fossix.org> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20170725124019.GC19732@localhost> References: <20170725124019.GC19732@localhost> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 672 Lines: 24 Pass missing parameter to ksft_exit_skip. Signed-off-by: Santosh Sivaraj --- 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