From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753871AbcL0Kvz (ORCPT ); Tue, 27 Dec 2016 05:51:55 -0500 Received: from terminus.zytor.com ([198.137.202.10]:38846 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752119AbcL0Kvq (ORCPT ); Tue, 27 Dec 2016 05:51:46 -0500 Date: Tue, 27 Dec 2016 02:49:26 -0800 From: tip-bot for Sedat Dilek Message-ID: Cc: linux-kernel@vger.kernel.org, paul.gortmaker@windriver.com, bp@suse.de, peterz@infradead.org, hpa@zytor.com, mingo@kernel.org, sedat.dilek@gmail.com, tglx@linutronix.de Reply-To: mingo@kernel.org, hpa@zytor.com, bp@suse.de, peterz@infradead.org, paul.gortmaker@windriver.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, sedat.dilek@gmail.com In-Reply-To: <20161226100511.8662-1-sedat.dilek@gmail.com> References: <20161226100511.8662-1-sedat.dilek@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:smp/urgent] perf/x86/amd/ibs: Fix typo after cleanup state names in cpu/hotplug Git-Commit-ID: 7e164ce4e8ecd7e9a58a83750bd3ee03125df154 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: 7e164ce4e8ecd7e9a58a83750bd3ee03125df154 Gitweb: http://git.kernel.org/tip/7e164ce4e8ecd7e9a58a83750bd3ee03125df154 Author: Sedat Dilek AuthorDate: Mon, 26 Dec 2016 11:05:11 +0100 Committer: Thomas Gleixner CommitDate: Tue, 27 Dec 2016 11:42:12 +0100 perf/x86/amd/ibs: Fix typo after cleanup state names in cpu/hotplug Fix a small typo after cleanup state names in cpu/hotplug. The new convention is 'subsys/xxx/yyy:state' where "state" here is called "starting" not "STARTING". Fixes: 73c1b41e63f0 ("cpu/hotplug: Cleanup state names") Signed-off-by: Sedat Dilek Cc: Peter Zijlstra Cc: Borislav Petkov Cc: Paul Gortmaker Link: http://lkml.kernel.org/r/20161226100511.8662-1-sedat.dilek@gmail.com Signed-off-by: Thomas Gleixner --- arch/x86/events/amd/ibs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/events/amd/ibs.c b/arch/x86/events/amd/ibs.c index 05612a2..496e603 100644 --- a/arch/x86/events/amd/ibs.c +++ b/arch/x86/events/amd/ibs.c @@ -1010,7 +1010,7 @@ static __init int amd_ibs_init(void) * all online cpus. */ cpuhp_setup_state(CPUHP_AP_PERF_X86_AMD_IBS_STARTING, - "perf/x86/amd/ibs:STARTING", + "perf/x86/amd/ibs:starting", x86_pmu_amd_ibs_starting_cpu, x86_pmu_amd_ibs_dying_cpu);