- Add a debug print
authorCameron Gutman <aicommander@gmail.com>
Wed, 24 Sep 2008 22:00:02 +0000 (22:00 +0000)
committerCameron Gutman <aicommander@gmail.com>
Wed, 24 Sep 2008 22:00:02 +0000 (22:00 +0000)
svn path=/branches/aicom-network-fixes/; revision=36496

drivers/network/ndis/ndis/miniport.c

index e133e46..bf77c74 100644 (file)
@@ -645,8 +645,10 @@ MiniportHangDpc(
   BOOLEAN AddressingReset = FALSE;
 
 
-  if (MiniCheckForHang(Adapter))
+  if (MiniCheckForHang(Adapter)) {
+      NDIS_DbgPrint(MIN_TRACE, ("Miniport detected adapter hang\n"));
       MiniReset(Adapter, &AddressingReset);
+  }
 
   /* FIXME: We should call MiniportSetInformation if AddressingReset is TRUE */
 }