From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934442AbbDJN4B (ORCPT ); Fri, 10 Apr 2015 09:56:01 -0400 Received: from mailgw02.mediatek.com ([210.61.82.184]:49008 "EHLO mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S933138AbbDJNz6 (ORCPT ); Fri, 10 Apr 2015 09:55:58 -0400 X-Listener-Flag: 11101 From: Yingjoe Chen To: John Stultz , Thomas Gleixner CC: , , Martin Schwidefsky , , Yingjoe Chen Subject: [PATCH] time: Remove nonexistent function prototype. Date: Fri, 10 Apr 2015 21:55:50 +0800 Message-ID: <1428674150-1780-1-git-send-email-yingjoe.chen@mediatek.com> X-Mailer: git-send-email 1.8.1.1.dirty MIME-Version: 1.0 Content-Type: text/plain X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The function clocksource_get_next() was removed in commit 75c5158f70 (timekeeping: Update clocksource with stop_machine), but the prototype is not removed with it. Remove the prototype. Signed-off-by: Yingjoe Chen --- include/linux/clocksource.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index 9c78d15..450695d 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h @@ -181,7 +181,6 @@ static inline s64 clocksource_cyc2ns(cycle_t cycles, u32 mult, u32 shift) extern int clocksource_register(struct clocksource*); extern int clocksource_unregister(struct clocksource*); extern void clocksource_touch_watchdog(void); -extern struct clocksource* clocksource_get_next(void); extern void clocksource_change_rating(struct clocksource *cs, int rating); extern void clocksource_suspend(void); extern void clocksource_resume(void); -- 1.8.1.1.dirty