// ndis.h
VOID NdisMResetMiniport(
[in] NDIS_HANDLE MiniportAdapterHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
A miniport driver calls the NdisMResetMiniport function to trigger a later reset operation from NDIS.
MiniportAdapterHandle [in]The miniport adapter handle that NDIS passed to the MiniportAdapterHandle parameter of MiniportInitializeEx.
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.