From: Randy Dunlap <[EMAIL PROTECTED]>

WARNING: vmlinux.o(.exit.text+0xc5b5): Section mismatch: reference to 
.init.data:_asc_def_iop_base (between 'advansys_isa_remove' and 
'advansys_eisa_remove')

_asc_def_iop_base is used in both init and exit code, so it cannot be
marked as __devinitdata.

Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
---
 drivers/scsi/advansys.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6.24-rc7-git1.orig/drivers/scsi/advansys.c
+++ linux-2.6.24-rc7-git1/drivers/scsi/advansys.c
@@ -13906,7 +13906,7 @@ static int advansys_release(struct Scsi_
 
 #define ASC_IOADR_TABLE_MAX_IX  11
 
-static PortAddr _asc_def_iop_base[ASC_IOADR_TABLE_MAX_IX] __devinitdata = {
+static PortAddr _asc_def_iop_base[ASC_IOADR_TABLE_MAX_IX] = {
        0x100, 0x0110, 0x120, 0x0130, 0x140, 0x0150, 0x0190,
        0x0210, 0x0230, 0x0250, 0x0330
 };
-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to