瀏覽代碼

[SCSI] sun3: Provide a dummy NCR5380_exit()

and call it from sun3scsi_release(), cfr. the other NCR5380 drivers.

This fixes:

drivers/scsi/NCR5380.h:303: warning: ‘NCR5380_exit’ declared ‘static’ but never defined

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Geert Uytterhoeven 14 年之前
父節點
當前提交
19b6c51cf0
共有 3 個文件被更改,包括 7 次插入0 次删除
  1. 5 0
      drivers/scsi/sun3_NCR5380.c
  2. 1 0
      drivers/scsi/sun3_scsi.c
  3. 1 0
      drivers/scsi/sun3_scsi_vme.c

+ 5 - 0
drivers/scsi/sun3_NCR5380.c

@@ -890,6 +890,11 @@ static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
     return 0;
 }
 
+static void NCR5380_exit(struct Scsi_Host *instance)
+{
+	/* Empty, as we didn't schedule any delayed work */
+}
+
 /* 
  * Function : int NCR5380_queue_command (struct scsi_cmnd *cmd,
  *	void (*done)(struct scsi_cmnd *))

+ 1 - 0
drivers/scsi/sun3_scsi.c

@@ -314,6 +314,7 @@ int sun3scsi_release (struct Scsi_Host *shpnt)
 
 	iounmap((void *)sun3_scsi_regp);
 
+	NCR5380_exit(shpnt);
 	return 0;
 }
 

+ 1 - 0
drivers/scsi/sun3_scsi_vme.c

@@ -283,6 +283,7 @@ int sun3scsi_release (struct Scsi_Host *shpnt)
 
 	iounmap((void *)sun3_scsi_regp);
 
+	NCR5380_exit(shpnt);
 	return 0;
 }