Amd64/misc 64bit fixes (#236)
[reactos.git] / drivers / network / ndis / ndis / control.c
index 2a5bbc5..7aa51ef 100644 (file)
@@ -12,7 +12,6 @@
 
 #include "ndissys.h"
 
-\f
 /*
  * @implemented
  */
@@ -33,7 +32,6 @@ NdisInitializeReadWriteLock(
   KeInitializeSpinLock(&Lock->SpinLock);
 }
 
-\f
 /*
  * @implemented
  */
@@ -94,7 +92,6 @@ NdisAcquireReadWriteLock(
   }
 }
 
-\f
 /*
  * @implemented
  */
@@ -129,7 +126,6 @@ NdisReleaseReadWriteLock(
   }
 }
 
-\f
 /*
  * @implemented
  */
@@ -147,7 +143,6 @@ NdisAcquireSpinLock(
   KeAcquireSpinLock(&SpinLock->SpinLock, &SpinLock->OldIrql);
 }
 
-\f
 /*
  * @implemented
  */
@@ -165,7 +160,6 @@ NdisAllocateSpinLock(
   KeInitializeSpinLock(&SpinLock->SpinLock);
 }
 
-\f
 /*
  * @implemented
  */
@@ -184,7 +178,6 @@ NdisDprAcquireSpinLock(
   SpinLock->OldIrql = DISPATCH_LEVEL;
 }
 
-\f
 /*
  * @implemented
  */
@@ -202,7 +195,6 @@ NdisDprReleaseSpinLock(
   KeReleaseSpinLockFromDpcLevel(&SpinLock->SpinLock);
 }
 
-\f
 /*
  * @implemented
  */
@@ -269,7 +261,7 @@ NdisResetEvent(
  *     Event = Pointer to the initialized event object to be reset
  */
 {
-  KeResetEvent(&Event->Event);
+  KeClearEvent(&Event->Event);
 }
 
 
@@ -318,4 +310,3 @@ NdisWaitEvent(
 }
 
 /* EOF */
-