patch-2.1.7 linux/drivers/scsi/aha1740.c
Next file: linux/drivers/scsi/hosts.c
Previous file: linux/drivers/net/tulip.c
Back to the patch index
Back to the overall index
- Lines: 33
- Date:
Wed Oct 30 01:20:26 1996
- Orig file:
v2.1.6/linux/drivers/scsi/aha1740.c
- Orig date:
Fri Mar 1 07:50:52 1996
diff -u --recursive --new-file v2.1.6/linux/drivers/scsi/aha1740.c linux/drivers/scsi/aha1740.c
@@ -336,11 +336,11 @@
if (cptr == NULL) panic("aha1740.c: unable to allocate DMA memory\n");
for(i=0; i<SCpnt->use_sg; i++)
{
- cptr[i].dataptr = (long) sgpnt[i].address;
cptr[i].datalen = sgpnt[i].length;
+ cptr[i].dataptr = virt_to_bus(sgpnt[i].address);
}
ecb[ecbno].datalen = SCpnt->use_sg * sizeof(struct aha1740_chain);
- ecb[ecbno].dataptr = (long) cptr;
+ ecb[ecbno].dataptr = virt_to_bus(cptr);
#ifdef DEBUG
printk("cptr %x: ",cptr);
ptr = (unsigned char *) cptr;
@@ -351,15 +351,15 @@
{
SCpnt->host_scribble = NULL;
ecb[ecbno].datalen = bufflen;
- ecb[ecbno].dataptr = (long) buff;
+ ecb[ecbno].dataptr = virt_to_bus(buff);
}
ecb[ecbno].lun = SCpnt->lun;
ecb[ecbno].ses = 1; /* Suppress underrun errors */
ecb[ecbno].dir= direction;
ecb[ecbno].ars=1; /* Yes, get the sense on an error */
ecb[ecbno].senselen = 12;
- ecb[ecbno].senseptr = (long) ecb[ecbno].sense;
- ecb[ecbno].statusptr = (long) ecb[ecbno].status;
+ ecb[ecbno].senseptr = virt_to_bus(ecb[ecbno].sense);
+ ecb[ecbno].statusptr = virt_to_bus(ecb[ecbno].status);
ecb[ecbno].done = done;
ecb[ecbno].SCpnt = SCpnt;
#ifdef DEBUG
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov