Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a8c8be08e023cf65f103442d1c71710fad7a0905
Commit:     a8c8be08e023cf65f103442d1c71710fad7a0905
Parent:     9f57195b2db94488999c9cb8a1e0a6332644d5de
Author:     Tony Luck <[EMAIL PROTECTED]>
AuthorDate: Fri May 18 15:11:34 2007 -0700
Committer:  Tony Luck <[EMAIL PROTECTED]>
CommitDate: Fri May 18 15:11:34 2007 -0700

    [IA64] Yet another section mismatch warning
    
    reference to .init.data: from .text between 'sn_cpu_init' (at offset 
0x1411) and 'nasid_slice_to_cpuid'
    reference to .init.data: from .text between 'sn_cpu_init' (at offset 
0x1420) and 'nasid_slice_to_cpuid'
    
    The offending .init.data object is shub_1_1_found which should be declared
    in __cpuinitdata, not in __initdata
    
    Signed-off-by: Tony Luck <[EMAIL PROTECTED]>
---
 arch/ia64/sn/kernel/setup.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/ia64/sn/kernel/setup.c b/arch/ia64/sn/kernel/setup.c
index a574fcd..684b1c9 100644
--- a/arch/ia64/sn/kernel/setup.c
+++ b/arch/ia64/sn/kernel/setup.c
@@ -194,7 +194,7 @@ void __init early_sn_setup(void)
 }
 
 extern int platform_intr_list[];
-static int __initdata shub_1_1_found;
+static int __cpuinitdata shub_1_1_found;
 
 /*
  * sn_check_for_wars
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to