From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Could fix a bug in a hotplug scenario. WARNING: drivers/scsi/gdth.o(.text+0x3e6d): Section mismatch in reference from the function gdth_pci_probe_one() to the function .init.text:gdth_search_drives() The function gdth_pci_probe_one() references the function __init gdth_search_drives(). This is often because gdth_pci_probe_one lacks a __init annotation or the annotation of gdth_search_drives is wrong. WARNING: drivers/scsi/gdth.o(.text+0x3f78): Section mismatch in reference from the function gdth_pci_probe_one() to the function .init.text:gdth_enable_int() The function gdth_pci_probe_one() references the function __init gdth_enable_int(). This is often because gdth_pci_probe_one lacks a __init annotation or the annotation of gdth_enable_int is wrong. Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Achim Leubner <achim_leubner@xxxxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/gdth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/scsi/gdth.c~gdth-fix-section-mismatch-warnings drivers/scsi/gdth.c --- a/drivers/scsi/gdth.c~gdth-fix-section-mismatch-warnings +++ a/drivers/scsi/gdth.c @@ -1238,7 +1238,7 @@ static int gdth_init_pci(struct pci_dev /* controller protocol functions */ -static void __init gdth_enable_int(gdth_ha_str *ha) +static void gdth_enable_int(gdth_ha_str *ha) { ulong flags; gdt2_dpram_str __iomem *dp2_ptr; @@ -1554,7 +1554,7 @@ static int gdth_internal_cmd(gdth_ha_str /* search for devices */ -static int __init gdth_search_drives(gdth_ha_str *ha) +static int gdth_search_drives(gdth_ha_str *ha) { ushort cdev_cnt, i; int ok; @@ -4932,7 +4932,7 @@ static int __init gdth_eisa_probe_one(us #endif /* CONFIG_EISA */ #ifdef CONFIG_PCI -static int gdth_pci_probe_one(gdth_pci_str *pcistr, +int gdth_pci_probe_one(gdth_pci_str *pcistr, gdth_ha_str **ha_out) { struct Scsi_Host *shp; _ -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html