VOID
NdisUnmapIoSpace(
IN NDIS_HANDLE NdisAdapterHandle,
IN PVOID VirtualAddress,
IN UINT Length
);
NdisUnmapIoSpace is called by the NIC driver to release a mapping obtained with NdisMapIoSpace.
Drivers usually call NdisUnmapIoSpace when they are unloading.
Callers of NdisUnmapIoSpace run at IRQL PASSIVE_LEVEL.