From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753242AbbGOSVo (ORCPT ); Wed, 15 Jul 2015 14:21:44 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:35659 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752081AbbGOSVn (ORCPT ); Wed, 15 Jul 2015 14:21:43 -0400 From: Stephen Boyd To: Thomas Gleixner Cc: linux-kernel@vger.kernel.org, trivial@kernel.org, "Rafael J. Wysocki" Subject: [PATCH] clockevents: Remove clockevents_notify() prototype Date: Wed, 15 Jul 2015 11:21:40 -0700 Message-Id: <1436984500-5425-1-git-send-email-sboyd@codeaurora.org> X-Mailer: git-send-email 2.3.0.rc1.33.g42e4583 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This function no longer exists after commit a49b116dcb12 (clockevents: Cleanup dead cpu explicitely, 2015-04-03). Remove the prototype and the stub function. Cc: Rafael J. Wysocki Signed-off-by: Stephen Boyd --- include/linux/clockchips.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h index 597a1e836f22..31ce435981fe 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) { } -- The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project