|
@@ -2616,6 +2616,7 @@ static void initio_build_scb(struct initio_host * host, struct scsi_ctrl_blk * c
|
|
|
scsi_for_each_sg(cmnd, sglist, cblk->sglen, i) {
|
|
|
sg->data = cpu_to_le32((u32)sg_dma_address(sglist));
|
|
|
total_len += sg->len = cpu_to_le32((u32)sg_dma_len(sglist));
|
|
|
+ ++sg;
|
|
|
}
|
|
|
|
|
|
cblk->buflen = (scsi_bufflen(cmnd) > total_len) ?
|
|
@@ -2867,6 +2868,7 @@ static int initio_probe_one(struct pci_dev *pdev,
|
|
|
}
|
|
|
host = (struct initio_host *)shost->hostdata;
|
|
|
memset(host, 0, sizeof(struct initio_host));
|
|
|
+ host->addr = pci_resource_start(pdev, 0);
|
|
|
|
|
|
if (!request_region(host->addr, 256, "i91u")) {
|
|
|
printk(KERN_WARNING "initio: I/O port range 0x%x is busy.\n", host->addr);
|