From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757832AbbDVTEo (ORCPT ); Wed, 22 Apr 2015 15:04:44 -0400 Received: from terminus.zytor.com ([198.137.202.10]:41072 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752728AbbDVTEn (ORCPT ); Wed, 22 Apr 2015 15:04:43 -0400 Date: Wed, 22 Apr 2015 12:03:56 -0700 From: tip-bot for Yingjoe Chen Message-ID: Cc: linux-arm-kernel@lists.infradead.org, tglx@linutronix.de, srv_heupstream@mediatek.com, schwidefsky@de.ibm.com, linux-kernel@vger.kernel.org, yingjoe.chen@mediatek.com, mingo@kernel.org, hpa@zytor.com, john.stultz@linaro.org Reply-To: linux-kernel@vger.kernel.org, mingo@kernel.org, yingjoe.chen@mediatek.com, hpa@zytor.com, john.stultz@linaro.org, linux-arm-kernel@lists.infradead.org, tglx@linutronix.de, srv_heupstream@mediatek.com, schwidefsky@de.ibm.com In-Reply-To: <1428674150-1780-1-git-send-email-yingjoe.chen@mediatek.com> References: <1428674150-1780-1-git-send-email-yingjoe.chen@mediatek.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] time: Remove nonexistent function prototype Git-Commit-ID: 4796cf9b02b5bea141632e21d64556a7eb883a65 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 4796cf9b02b5bea141632e21d64556a7eb883a65 Gitweb: http://git.kernel.org/tip/4796cf9b02b5bea141632e21d64556a7eb883a65 Author: Yingjoe Chen AuthorDate: Fri, 10 Apr 2015 21:55:50 +0800 Committer: Thomas Gleixner CommitDate: Wed, 22 Apr 2015 12:03:39 +0200 time: Remove nonexistent function prototype The function clocksource_get_next() was removed in commit 75c5158f70 (timekeeping: Update clocksource with stop_machine), but the prototype was not removed with it. Remove the prototype. Signed-off-by: Yingjoe Chen Cc: Cc: Martin Schwidefsky Cc: Cc: John Stultz Link: http://lkml.kernel.org/r/1428674150-1780-1-git-send-email-yingjoe.chen@mediatek.com Signed-off-by: Thomas Gleixner --- include/linux/clocksource.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index 1355098..a25fc6e 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_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);