This patch allows my qlogic pcmcia scsi card to compile again, as broken
by the recent scsi layer changes.
Despite davem's apparent suggestion that it'd be better to rewrite the
driver, i'd rather not _just_ right now :)
/ Brett Pemberton
unsigned int reqlen; /* total length of transfer */
struct scatterlist *sglist; /* scatter-gather list pointer */
unsigned int sgcount; /* sg counter */
+char *buf;
rtrc(1)
j = inb(qbase + 6);
REG0;
return ((qabort == 1 ? DID_ABORT : DID_RESET) << 16);
}
- if (ql_pdma(phase, sglist->address, sglist->length))
+ buf = page_address(sglist->page) + sglist->offset;
+ if (ql_pdma(phase, buf, sglist->length))
break;
sglist++;
}