From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benjamin Herrenschmidt Subject: [PATCH 3/3] Use __weak macro for smp_setup_processor_id Date: Fri, 18 Apr 2008 16:56:18 +1000 Message-ID: <20080418065728.31AF4DE255@ozlabs.org> Return-path: Sender: linux-arch-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-ID: To: Andrew Morton , Paul Mackerras Cc: linuxppc-dev-mnsaURCQ41sdnm+yROfE0A@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Linux-Arch Use the __weak macro instead of the longer __attribute__ ((weak)) form Signed-off-by: Benjamin Herrenschmidt -- init/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-work.orig/init/main.c 2008-04-18 16:44:32.000000000 +1000 +++ linux-work/init/main.c 2008-04-18 16:44:37.000000000 +1000 @@ -500,7 +500,7 @@ static void __init boot_cpu_init(void) cpu_set(cpu, cpu_possible_map); } -void __init __attribute__((weak)) smp_setup_processor_id(void) +void __init __weak smp_setup_processor_id(void) { } From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ozlabs.org ([203.10.76.45]:38774 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758267AbYDRG5a (ORCPT ); Fri, 18 Apr 2008 02:57:30 -0400 From: Benjamin Herrenschmidt Date: Fri, 18 Apr 2008 16:56:18 +1000 Subject: [PATCH 3/3] Use __weak macro for smp_setup_processor_id Message-ID: <20080418065728.31AF4DE255@ozlabs.org> Sender: linux-arch-owner@vger.kernel.org List-ID: To: Andrew Morton , Paul Mackerras Cc: linuxppc-dev@ozlabs.org, linux-kernel@vger.kernel.org, Linux-Arch Message-ID: <20080418065618.ecF_0JYn_XvbDA_7oPckvkUEvRreFGn_a3Et-k1-9GU@z> Use the __weak macro instead of the longer __attribute__ ((weak)) form Signed-off-by: Benjamin Herrenschmidt -- init/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-work.orig/init/main.c 2008-04-18 16:44:32.000000000 +1000 +++ linux-work/init/main.c 2008-04-18 16:44:37.000000000 +1000 @@ -500,7 +500,7 @@ static void __init boot_cpu_init(void) cpu_set(cpu, cpu_possible_map); } -void __init __attribute__((weak)) smp_setup_processor_id(void) +void __init __weak smp_setup_processor_id(void) { }