NdisMResetMiniport - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

VOID NdisMResetMiniport(
  [in] NDIS_HANDLE MiniportAdapterHandle
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndismresetminiport)

NdisMResetMiniport function

Description

A miniport driver calls the NdisMResetMiniport function to trigger a later reset operation from NDIS.

Parameters

MiniportAdapterHandle [in]

The miniport adapter handle that NDIS passed to the MiniportAdapterHandle parameter of MiniportInitializeEx.

Remarks

A miniport driver calls NdisMResetMiniport when it determines that the device requires a hardware reset.

As a result, NDIS schedules a work item for calling the miniport driver's MiniportResetEx function asynchronously.

NdisMResetMiniport must be called at IRQL <= DISPATCH_LEVEL.