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_scsi.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_scsi.c')
-rw-r--r-- | drivers/scsi/atari_scsi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/atari_scsi.c b/drivers/scsi/atari_scsi.c index 3e8658e2f154..04a154f87e3e 100644 --- a/drivers/scsi/atari_scsi.c +++ b/drivers/scsi/atari_scsi.c | |||
@@ -730,6 +730,7 @@ int atari_scsi_release(struct Scsi_Host *sh) | |||
730 | free_irq(IRQ_TT_MFP_SCSI, sh); | 730 | free_irq(IRQ_TT_MFP_SCSI, sh); |
731 | if (atari_dma_buffer) | 731 | if (atari_dma_buffer) |
732 | atari_stram_free(atari_dma_buffer); | 732 | atari_stram_free(atari_dma_buffer); |
733 | NCR5380_exit(sh); | ||
733 | return 1; | 734 | return 1; |
734 | } | 735 | } |
735 | 736 | ||