Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d7418031cf10fe82e16aa2057a702a2d1dab6f4a
Commit:     d7418031cf10fe82e16aa2057a702a2d1dab6f4a
Parent:     84fdde5af1eca5ff170d1dff7e2681b0a50a9ecb
Author:     Stephen Rothwell <[EMAIL PROTECTED]>
AuthorDate: Thu Oct 4 12:00:28 2007 +1000
Committer:  Paul Mackerras <[EMAIL PROTECTED]>
CommitDate: Tue Oct 9 21:00:48 2007 +1000

    [POWERPC] Remove some more section mismatch warnings
    
    WARNING: vmlinux.o(.text+0x2ff5c): Section mismatch: reference to 
.init.text:.pmac_find_ide_boot (between '.note_bootable_part' and 
'.note_scsi_host')
    
    >From holly_defconfig:
    WARNING: vmlinux.o(.text+0x164fe): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    WARNING: vmlinux.o(.text+0x16506): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    
    >From linkstation_defconfig:
    WARNING: vmlinux.o(.text+0x158fe): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    WARNING: vmlinux.o(.text+0x15906): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    
    >From mpc7448_hpc2_defconfig:
    WARNING: vmlinux.o(.text+0x1583e): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    WARNING: vmlinux.o(.text+0x15846): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    
    >From pmac32_defconfig:
    WARNING: vmlinux.o(.text+0x154ca): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'note_scsi_host')
    WARNING: vmlinux.o(.text+0x154d2): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'note_scsi_host')
    WARNING: vmlinux.o(.text+0x1553c): Section mismatch: reference to 
.init.text:pmac_find_ide_boot (between 'note_bootable_part' and 
'note_scsi_host')
    
    >From ppc64_defconfig:
    WARNING: vmlinux.o(.text+0x3acdc): Section mismatch: reference to 
.init.text:.pmac_find_ide_boot (between '.note_bootable_part' and 
'.note_scsi_host')
    
    >From prpmc2800_defconfig:
    WARNING: vmlinux.o(.text+0x1611e): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    WARNING: vmlinux.o(.text+0x16126): Section mismatch: reference to 
.init.data:boot_command_line (between 'note_bootable_part' and 'find_via_pmu')
    
    Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>
---
 arch/powerpc/platforms/powermac/setup.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/platforms/powermac/setup.c 
b/arch/powerpc/platforms/powermac/setup.c
index 7ccb923..840f5b4 100644
--- a/arch/powerpc/platforms/powermac/setup.c
+++ b/arch/powerpc/platforms/powermac/setup.c
@@ -466,8 +466,13 @@ static int pmac_late_init(void)
 
 late_initcall(pmac_late_init);
 
-/* can't be __init - can be called whenever a disk is first accessed */
-void note_bootable_part(dev_t dev, int part, int goodness)
+/*
+ * This is __init_refok because we check for "initializing" before
+ * touching any of the __init sensitive things and "initializing"
+ * will be false after __init time. This can't be __init because it
+ * can be called whenever a disk is first accessed.
+ */
+void __init_refok note_bootable_part(dev_t dev, int part, int goodness)
 {
        static int found_boot = 0;
        char *p;
-
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