Subject: [PATCH] Mac ESP: Scsi_Cmnd -> struct scsi_cmnd Mac ESP SCSI: Replace Scsi_Cmnd by struct scsi_cmnd Signed-off-by: Geert Uytterhoeven --- drivers/scsi/mac_esp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-m68k-2.6.19.orig/drivers/scsi/mac_esp.c +++ linux-m68k-2.6.19/drivers/scsi/mac_esp.c @@ -47,7 +47,7 @@ extern void esp_handle(struct NCR_ESP *e extern void mac_esp_intr(int irq, void *dev_id); 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, char * vaddress, int length); static void dma_init_write(struct NCR_ESP * esp, char * vaddress, int length); @@ -582,7 +582,7 @@ static int dma_bytes_sent(struct NCR_ESP * is ever implemented. Returning 0 here will use PIO. */ -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 0 /* no DMA yet; make conditional */