[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>
This commit is contained in:
parent
50f87f910d
commit
6323e4fe7f
2 changed files with 6 additions and 0 deletions
|
@ -892,6 +892,11 @@ static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void NCR5380_exit(struct Scsi_Host *instance)
|
||||||
|
{
|
||||||
|
/* Empty, as we didn't schedule any delayed work */
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Function : int NCR5380_queue_command (Scsi_Cmnd *cmd,
|
* Function : int NCR5380_queue_command (Scsi_Cmnd *cmd,
|
||||||
* void (*done)(Scsi_Cmnd *))
|
* void (*done)(Scsi_Cmnd *))
|
||||||
|
|
|
@ -730,6 +730,7 @@ int atari_scsi_release(struct Scsi_Host *sh)
|
||||||
free_irq(IRQ_TT_MFP_SCSI, sh);
|
free_irq(IRQ_TT_MFP_SCSI, sh);
|
||||||
if (atari_dma_buffer)
|
if (atari_dma_buffer)
|
||||||
atari_stram_free(atari_dma_buffer);
|
atari_stram_free(atari_dma_buffer);
|
||||||
|
NCR5380_exit(sh);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue