Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754079AbbGSQXx (ORCPT ); Sun, 19 Jul 2015 12:23:53 -0400 Received: from mail-wg0-f51.google.com ([74.125.82.51]:34280 "EHLO mail-wg0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753652AbbGSQXH (ORCPT ); Sun, 19 Jul 2015 12:23:07 -0400 From: Mathias Krause To: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" Cc: linux-kernel@vger.kernel.org, x86@kernel.org, Mathias Krause , Paul Gortmaker Subject: [PATCH 4/5] x86, smpboot: Drop bogus __ref annotation from remove_cpu_from_maps() Date: Sun, 19 Jul 2015 18:22:53 +0200 Message-Id: <1437322974-11081-5-git-send-email-minipli@googlemail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1437322974-11081-1-git-send-email-minipli@googlemail.com> References: <1437322974-11081-1-git-send-email-minipli@googlemail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1115 Lines: 31 The __cpuinit annotation of numa_remove_cpu() was dropped in commit 148f9bb87745 ("x86: delete __cpuinit usage from all x86 files"), vanishing the need for the __ref annotation of remove_cpu_from_maps(). Signed-off-by: Mathias Krause Cc: Paul Gortmaker --- arch/x86/kernel/smpboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index b1f3ed9c7a9e..1d06cf8c0093 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c @@ -1358,7 +1358,7 @@ static void remove_siblinginfo(int cpu) cpumask_clear_cpu(cpu, cpu_sibling_setup_mask); } -static void __ref remove_cpu_from_maps(int cpu) +static void remove_cpu_from_maps(int cpu) { set_cpu_online(cpu, false); cpumask_clear_cpu(cpu, cpu_callout_mask); -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/