diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-04-18 16:56:18 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-24 20:57:33 +1000 |
commit | 839ad62e75ee1968438d1b72261304cd47fc961e (patch) | |
tree | 5494458c9a17910488701dce3ff5a8647b49ea63 /init | |
parent | f6a616800e68b61807d0f7bb0d5dc70665ef8046 (diff) |
[POWERPC] Use __weak macro for smp_setup_processor_id
Use the __weak macro instead of the longer __attribute__ ((weak)) form
in one place in init/main.c.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Andrew Morton <akpm@linux-foundation.org>
--
init/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c index 507c9fba03bb..1687b0167c4a 100644 --- a/init/main.c +++ b/init/main.c @@ -521,7 +521,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) { } |