From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753593AbbGTJkX (ORCPT ); Mon, 20 Jul 2015 05:40:23 -0400 Received: from terminus.zytor.com ([198.137.202.10]:54339 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751612AbbGTJkV (ORCPT ); Mon, 20 Jul 2015 05:40:21 -0400 Date: Mon, 20 Jul 2015 02:40:04 -0700 From: tip-bot for Stephen Boyd Message-ID: Cc: sboyd@codeaurora.org, mingo@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, tglx@linutronix.de, rafael.j.wysocki@intel.com Reply-To: rafael.j.wysocki@intel.com, mingo@kernel.org, sboyd@codeaurora.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, hpa@zytor.com In-Reply-To: <1436984500-5425-1-git-send-email-sboyd@codeaurora.org> References: <1436984500-5425-1-git-send-email-sboyd@codeaurora.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] clockevents: Remove clockevents_notify() prototype Git-Commit-ID: 87dc11220df266d7d4b6dc594b55d0729b92809d 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: 87dc11220df266d7d4b6dc594b55d0729b92809d Gitweb: http://git.kernel.org/tip/87dc11220df266d7d4b6dc594b55d0729b92809d Author: Stephen Boyd AuthorDate: Wed, 15 Jul 2015 11:21:40 -0700 Committer: Thomas Gleixner CommitDate: Mon, 20 Jul 2015 11:37:46 +0200 clockevents: Remove clockevents_notify() prototype This function no longer exists after commit a49b116dcb12 (clockevents: Cleanup dead cpu explicitely, 2015-04-03). Remove the prototype and the stub function. Signed-off-by: Stephen Boyd Cc: trivial@kernel.org Cc: Rafael J. Wysocki Link: http://lkml.kernel.org/r/1436984500-5425-1-git-send-email-sboyd@codeaurora.org Signed-off-by: Thomas Gleixner --- include/linux/clockchips.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h index 597a1e8..31ce435 100644 --- a/include/linux/clockchips.h +++ b/include/linux/clockchips.h @@ -234,13 +234,10 @@ static inline int tick_check_broadcast_expired(void) { return 0; } static inline void tick_setup_hrtimer_broadcast(void) { } # endif -extern int clockevents_notify(unsigned long reason, void *arg); - #else /* !CONFIG_GENERIC_CLOCKEVENTS: */ static inline void clockevents_suspend(void) { } static inline void clockevents_resume(void) { } -static inline int clockevents_notify(unsigned long reason, void *arg) { return 0; } static inline int tick_check_broadcast_expired(void) { return 0; } static inline void tick_setup_hrtimer_broadcast(void) { }