From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753600AbbDCIYa (ORCPT ); Fri, 3 Apr 2015 04:24:30 -0400 Received: from terminus.zytor.com ([198.137.202.10]:44915 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752626AbbDCIYZ (ORCPT ); Fri, 3 Apr 2015 04:24:25 -0400 Date: Fri, 3 Apr 2015 01:23:51 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: peterz@infradead.org, mingo@kernel.org, tglx@linutronix.de, rafael.j.wysocki@intel.com, hpa@zytor.com, linux-kernel@vger.kernel.org Reply-To: linux-kernel@vger.kernel.org, rafael.j.wysocki@intel.com, hpa@zytor.com, tglx@linutronix.de, mingo@kernel.org, peterz@infradead.org In-Reply-To: <2076318.76XJZ8QYP3@vostro.rjw.lan> References: <2076318.76XJZ8QYP3@vostro.rjw.lan> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] clockevents: Remove the broadcast control leftovers Git-Commit-ID: 89feddbfe7023ccfb4a6d7f5e3f5161d91b28b18 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: 89feddbfe7023ccfb4a6d7f5e3f5161d91b28b18 Gitweb: http://git.kernel.org/tip/89feddbfe7023ccfb4a6d7f5e3f5161d91b28b18 Author: Thomas Gleixner AuthorDate: Fri, 3 Apr 2015 02:03:42 +0200 Committer: Ingo Molnar CommitDate: Fri, 3 Apr 2015 08:44:33 +0200 clockevents: Remove the broadcast control leftovers All users converted. Remove the notify leftovers. Signed-off-by: Thomas Gleixner Signed-off-by: Rafael J. Wysocki Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/2076318.76XJZ8QYP3@vostro.rjw.lan Signed-off-by: Ingo Molnar --- include/linux/clockchips.h | 3 --- kernel/time/clockevents.c | 10 ---------- 2 files changed, 13 deletions(-) diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h index caeca76..438fafa 100644 --- a/include/linux/clockchips.h +++ b/include/linux/clockchips.h @@ -11,9 +11,6 @@ /* Clock event notification values */ enum clock_event_nofitiers { CLOCK_EVT_NOTIFY_ADD, - CLOCK_EVT_NOTIFY_BROADCAST_ON, - CLOCK_EVT_NOTIFY_BROADCAST_OFF, - CLOCK_EVT_NOTIFY_BROADCAST_FORCE, CLOCK_EVT_NOTIFY_BROADCAST_ENTER, CLOCK_EVT_NOTIFY_BROADCAST_EXIT, CLOCK_EVT_NOTIFY_CPU_DYING, diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c index 599ff8d..dba0b83 100644 --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c @@ -655,16 +655,6 @@ int clockevents_notify(unsigned long reason, void *arg) raw_spin_lock_irqsave(&clockevents_lock, flags); switch (reason) { - case CLOCK_EVT_NOTIFY_BROADCAST_ON: - tick_broadcast_enable(); - break; - case CLOCK_EVT_NOTIFY_BROADCAST_OFF: - tick_broadcast_disable(); - break; - case CLOCK_EVT_NOTIFY_BROADCAST_FORCE: - tick_broadcast_force(); - break; - case CLOCK_EVT_NOTIFY_BROADCAST_ENTER: case CLOCK_EVT_NOTIFY_BROADCAST_EXIT: ret = tick_broadcast_oneshot_control(reason);