[USBPORT][USBOHCI_NEW] Avoid using pointers for physical addresses.

This commit is contained in:
Vadim Galyant 2018-05-11 15:34:49 +02:00 committed by Thomas Faber
parent 837411e292
commit c89a190ea6
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
6 changed files with 17 additions and 17 deletions

View file

@ -54,8 +54,8 @@ typedef struct _USBPORT_RESOURCES {
ULONG Reserved;
PVOID ResourceBase;
SIZE_T IoSpaceLength;
PVOID StartVA;
PVOID StartPA;
ULONG_PTR StartVA;
ULONG StartPA;
UCHAR LegacySupport;
BOOLEAN IsChirpHandled;
UCHAR Reserved2;
@ -76,7 +76,7 @@ typedef struct _USBPORT_ENDPOINT_PROPERTIES {
ULONG TransferType;
ULONG Direction;
ULONG_PTR BufferVA;
ULONG_PTR BufferPA;
ULONG BufferPA;
ULONG BufferLength;
ULONG Reserved3;
ULONG MaxTransferSize;
@ -454,7 +454,7 @@ typedef ULONG
typedef PVOID
(NTAPI *PUSBPORT_GET_MAPPED_VIRTUAL_ADDRESS)(
PVOID,
ULONG,
PVOID,
PVOID);