diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-06-13 14:39:15 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-06-29 16:11:21 -0400 |
commit | 6323e4fe7f61f77c87c26d2b5dcb3472246c1341 (patch) | |
tree | 28a3e260ab70e79837fad7ee8c47205ed16d64b5 /drivers/scsi/atari_NCR5380.c | |
parent | 50f87f910db0f6dcd3eb569e76c4a48c5315198c (diff) |
[SCSI] atari_NCR5380: Provide a dummy NCR5380_exit()
and call it from atari_scsi_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>
Diffstat (limited to 'drivers/scsi/atari_NCR5380.c')
-rw-r--r-- | drivers/scsi/atari_NCR5380.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/scsi/atari_NCR5380.c b/drivers/scsi/atari_NCR5380.c index 24652f13dfd9..2db79b469d9e 100644 --- a/drivers/scsi/atari_NCR5380.c +++ b/drivers/scsi/atari_NCR5380.c | |||
@@ -892,6 +892,11 @@ static int __init NCR5380_init(struct Scsi_Host *instance, int flags) | |||
892 | return 0; | 892 | return 0; |
893 | } | 893 | } |
894 | 894 | ||
895 | static void NCR5380_exit(struct Scsi_Host *instance) | ||
896 | { | ||
897 | /* Empty, as we didn't schedule any delayed work */ | ||
898 | } | ||
899 | |||
895 | /* | 900 | /* |
896 | * Function : int NCR5380_queue_command (Scsi_Cmnd *cmd, | 901 | * Function : int NCR5380_queue_command (Scsi_Cmnd *cmd, |
897 | * void (*done)(Scsi_Cmnd *)) | 902 | * void (*done)(Scsi_Cmnd *)) |