mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[SCSIPORT]
- Do not pass NULL adapter to IoMapTransfer svn path=/trunk/; revision=62000
This commit is contained in:
parent
6bffa4c6ed
commit
d9b3f370ba
1 changed files with 1 additions and 1 deletions
|
@ -3286,7 +3286,7 @@ SpiAdapterControl(PDEVICE_OBJECT DeviceObject,
|
|||
break;
|
||||
|
||||
ScatterGatherList->Length = Srb->DataTransferLength - TotalLength;
|
||||
ScatterGatherList->PhysicalAddress = IoMapTransfer(NULL,
|
||||
ScatterGatherList->PhysicalAddress = IoMapTransfer(DeviceExtension->AdapterObject,
|
||||
Irp->MdlAddress,
|
||||
MapRegisterBase,
|
||||
DataVA + TotalLength,
|
||||
|
|
Loading…
Reference in a new issue