PATCH: fix aha1740

From: Alan Cox (alan@lxorguk.ukuu.org.uk)
Date: Fri Feb 14 2003 - 16:03:59 EST


diff -u --new-file --recursive --exclude-from /usr/src/exclude linux-2.5.60-ref/drivers/scsi/aha1740.c linux-2.5.60-ac1/drivers/scsi/aha1740.c
--- linux-2.5.60-ref/drivers/scsi/aha1740.c 2003-02-14 21:21:35.000000000 +0000
+++ linux-2.5.60-ac1/drivers/scsi/aha1740.c 2003-02-14 20:14:18.000000000 +0000
@@ -315,8 +315,8 @@
 {
     unchar direction;
     unchar *cmd = (unchar *) SCpnt->cmnd;
- unchar target = SCpnt->target;
- struct aha1740_hostdata *host = HOSTDATA(SCpnt->host);
+ unchar target = SCpnt->device->id;
+ struct aha1740_hostdata *host = HOSTDATA(SCpnt->device->host);
     unsigned long flags;
     void *buff = SCpnt->request_buffer;
     int bufflen = SCpnt->request_bufflen;
@@ -416,7 +416,7 @@
         host->ecb[ecbno].datalen = bufflen;
         host->ecb[ecbno].dataptr = isa_virt_to_bus(buff);
     }
- host->ecb[ecbno].lun = SCpnt->lun;
+ host->ecb[ecbno].lun = SCpnt->device->lun;
     host->ecb[ecbno].ses = 1; /* Suppress underrun errors */
     host->ecb[ecbno].dir = direction;
     host->ecb[ecbno].ars = 1; /* Yes, get the sense on an error */
@@ -449,7 +449,7 @@
 #define LOOPCNT_WARN 10 /* excessive mbxout wait -> syslog-msg */
 #define LOOPCNT_MAX 1000000 /* mbxout deadlock -> panic() after ~ 2 sec. */
         int loopcnt;
- unsigned int base = SCpnt->host->io_port;
+ unsigned int base = SCpnt->device->host->io_port;
         DEB(printk("aha1740[%d] critical section\n",ecbno));
 
         spin_lock_irqsave(&aha1740_lock, flags);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sat Feb 15 2003 - 22:00:57 EST