Author: cgutman Date: Tue Sep 23 15:48:43 2008 New Revision: 36440
URL: http://svn.reactos.org/svn/reactos?rev=36440&view=rev Log: - Uncomment the stubbed CheckForHang handler
Modified: branches/aicom-network-fixes/drivers/network/dd/ne2000/ne2000/main.c
Modified: branches/aicom-network-fixes/drivers/network/dd/ne2000/ne2000/main.c URL: http://svn.reactos.org/svn/reactos/branches/aicom-network-fixes/drivers/netw... ============================================================================== --- branches/aicom-network-fixes/drivers/network/dd/ne2000/ne2000/main.c [iso-8859-1] (original) +++ branches/aicom-network-fixes/drivers/network/dd/ne2000/ne2000/main.c [iso-8859-1] Tue Sep 23 15:48:43 2008 @@ -63,8 +63,7 @@ NDIS_PHYSICAL_ADDRESS HighestAcceptableMax = NDIS_PHYSICAL_ADDRESS_CONST(-1, -1);
-#if 0 -static BOOLEAN MiniportCheckForHang( +static BOOLEAN STDCALL MiniportCheckForHang( IN NDIS_HANDLE MiniportAdapterContext) /* * FUNCTION: Examines if an adapter has hung @@ -78,7 +77,6 @@
return FALSE; } -#endif
static VOID STDCALL MiniportDisableInterrupt( @@ -920,7 +918,7 @@ NdisZeroMemory(&Miniport, sizeof(Miniport)); Miniport.MajorNdisVersion = DRIVER_NDIS_MAJOR_VERSION; Miniport.MinorNdisVersion = DRIVER_NDIS_MINOR_VERSION; - Miniport.CheckForHangHandler = NULL; //MiniportCheckForHang; + Miniport.CheckForHangHandler = MiniportCheckForHang; Miniport.DisableInterruptHandler = MiniportDisableInterrupt; Miniport.EnableInterruptHandler = MiniportEnableInterrupt; Miniport.HaltHandler = MiniportHalt;