Subject: [PATCH] Amiga Fastlane: Scsi_Cmnd -> struct scsi_cmnd Amiga Fastlane SCSI: Replace Scsi_Cmnd by struct scsi_cmnd Signed-off-by: Geert Uytterhoeven --- drivers/scsi/fastlane.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-m68k-2.6.19.orig/drivers/scsi/fastlane.c +++ linux-m68k-2.6.19/drivers/scsi/fastlane.c @@ -84,7 +84,7 @@ struct fastlane_dma_registers { #define FASTLANE_DMA_ESI 0x01 /* Enable SCSI IRQ */ static int dma_bytes_sent(struct NCR_ESP *esp, int fifo_count); -static int dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp); +static int dma_can_transfer(struct NCR_ESP *esp, struct scsi_cmnd *sp); static void dma_dump_state(struct NCR_ESP *esp); static void dma_init_read(struct NCR_ESP *esp, __u32 addr, int length); static void dma_init_write(struct NCR_ESP *esp, __u32 vaddr, int length); @@ -254,7 +254,7 @@ static int dma_bytes_sent(struct NCR_ESP return fifo_count; } -static int dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp) +static int dma_can_transfer(struct NCR_ESP *esp, struct scsi_cmnd *sp) { unsigned long sz = sp->SCp.this_residual; if(sz > 0xfffc)