Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=80581c43d02f66afb2cafa44bef710a2549a1748
Commit:     80581c43d02f66afb2cafa44bef710a2549a1748
Parent:     d2fd89962cd5de6b1fb9c1c789b56bc16f58f121
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Wed Jun 27 14:09:49 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Thu Jun 28 11:34:53 2007 -0700

    mtrr/cyrix: fix sections
    
    main.c::mtrr_add() or mtrr_del() [exported]
    calls main.c::mtrr_add_page() or mtrr_del_page() or mtrr_restore() [resume]
    calls main.c::set_mtrr()
    calls main.c::ipi_handler()
    calls main.c::mtrr_if->set_all() == which can be cyrix_set_all
    
    WARNING: arch/i386/kernel/built-in.o(.text+0x8657): Section mismatch: 
reference to .init.data: (between 'cyrix_set_all' and 'centaur_get_free_region')
    WARNING: arch/i386/kernel/built-in.o(.text+0x866b): Section mismatch: 
reference to .init.data: (between 'cyrix_set_all' and 'centaur_get_free_region')
    WARNING: arch/i386/kernel/built-in.o(.text+0x867e): Section mismatch: 
reference to .init.data: (between 'cyrix_set_all' and 'centaur_get_free_region')
    WARNING: arch/i386/kernel/built-in.o(.text+0x8684): Section mismatch: 
reference to .init.data: (between 'cyrix_set_all' and 'centaur_get_free_region')
    WARNING: arch/i386/kernel/built-in.o(.text+0x868a): Section mismatch: 
reference to .init.data: (between 'cyrix_set_all' and 'centaur_get_free_region')
    
    Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
    Cc: Andi Kleen <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/i386/kernel/cpu/mtrr/cyrix.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/i386/kernel/cpu/mtrr/cyrix.c 
b/arch/i386/kernel/cpu/mtrr/cyrix.c
index 9edf562..1001f1e 100644
--- a/arch/i386/kernel/cpu/mtrr/cyrix.c
+++ b/arch/i386/kernel/cpu/mtrr/cyrix.c
@@ -233,12 +233,12 @@ typedef struct {
        mtrr_type type;
 } arr_state_t;
 
-static arr_state_t arr_state[8] __devinitdata = {
+static arr_state_t arr_state[8] = {
        {0UL, 0UL, 0UL}, {0UL, 0UL, 0UL}, {0UL, 0UL, 0UL}, {0UL, 0UL, 0UL},
        {0UL, 0UL, 0UL}, {0UL, 0UL, 0UL}, {0UL, 0UL, 0UL}, {0UL, 0UL, 0UL}
 };
 
-static unsigned char ccr_state[7] __devinitdata = { 0, 0, 0, 0, 0, 0, 0 };
+static unsigned char ccr_state[7] = { 0, 0, 0, 0, 0, 0, 0 };
 
 static void cyrix_set_all(void)
 {
-
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