From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753561AbbDCIYI (ORCPT ); Fri, 3 Apr 2015 04:24:08 -0400 Received: from terminus.zytor.com ([198.137.202.10]:44905 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752465AbbDCIYF (ORCPT ); Fri, 3 Apr 2015 04:24:05 -0400 Date: Fri, 3 Apr 2015 01:23:35 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: rafael.j.wysocki@intel.com, peterz@infradead.org, tglx@linutronix.de, mingo@kernel.org, linux-kernel@vger.kernel.org, tony@atomide.com, hpa@zytor.com Reply-To: tglx@linutronix.de, mingo@kernel.org, linux-kernel@vger.kernel.org, tony@atomide.com, hpa@zytor.com, rafael.j.wysocki@intel.com, peterz@infradead.org In-Reply-To: <2124877.3nbWGILHCV@vostro.rjw.lan> References: <2124877.3nbWGILHCV@vostro.rjw.lan> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] ARM: OMAP: Use explicit broadcast control function Git-Commit-ID: fa8589fe3bfafadd80677c8eabae97dc5dab22c0 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: fa8589fe3bfafadd80677c8eabae97dc5dab22c0 Gitweb: http://git.kernel.org/tip/fa8589fe3bfafadd80677c8eabae97dc5dab22c0 Author: Thomas Gleixner AuthorDate: Fri, 3 Apr 2015 02:02:47 +0200 Committer: Ingo Molnar CommitDate: Fri, 3 Apr 2015 08:44:33 +0200 ARM: OMAP: Use explicit broadcast control function Replace the clockevents_notify() call with an explicit function call. Signed-off-by: Thomas Gleixner Signed-off-by: Rafael J. Wysocki Cc: Peter Zijlstra Cc: Tony Lindgren Link: http://lkml.kernel.org/r/2124877.3nbWGILHCV@vostro.rjw.lan Signed-off-by: Ingo Molnar --- arch/arm/mach-omap2/cpuidle44xx.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-omap2/cpuidle44xx.c b/arch/arm/mach-omap2/cpuidle44xx.c index 01e398a..9284dc5 100644 --- a/arch/arm/mach-omap2/cpuidle44xx.c +++ b/arch/arm/mach-omap2/cpuidle44xx.c @@ -14,7 +14,7 @@ #include #include #include -#include +#include #include #include @@ -184,8 +184,7 @@ fail: */ static void omap_setup_broadcast_timer(void *arg) { - int cpu = smp_processor_id(); - clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ON, &cpu); + tick_broadcast_enable(); } static struct cpuidle_driver omap4_idle_driver = {