NdisMDeregisterIoPortRange

This function releases a mapping that was set up with the NdisMRegisterIoPortRange function during driver initialization.

VOID NdisMDeregisterIoPortRange(
  NDIS_HANDLE MiniportAdapterHandle,
  UINT InitialPort,
  UINT NumberOfPorts,
  PVOID PortOffset
);

Parameters

  • MiniportAdapterHandle
    [in] Handle input to the MiniportInitialize function.
  • InitialPort
    [in] Specifies the bus-relative address of the first port in the range of ports.
  • NumberOfPorts
    [in] Specifies the number of ports in the range.
  • PortOffset
    [in] Specifies the mapped base port address returned by the NdisMRegisterIoPortRange function.

Return Values

None.

Remarks

The miniport must pass the same InitialPort and NumberOfPorts parameters to this function that were passed when the MiniportInitialize function called the NdisMRegisterIoPortRange function to get the mapped PortOffset value. That is, a miniport cannot call this function to release a subrange of a mapped port range.

This function can be called from the MiniportInitialize or the MiniportHalt function only if MiniportInitialize previously made a successful call to the NdisMRegisterIoPortRange function.

This function also releases the driver's claim on the I/O port range in the registry.

After it calls NdisMRegisterIoPortRange, the miniport can no longer access the NIC's port range with calls to the NdisRawXXXPortXXX functions.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.
Link Library: Ndis.dll.

See Also

NdisMRegisterIoPortRange

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.