[HAL]
[reactos.git] / reactos / hal / halx86 / generic / cmos.c
index abcf18f..71c4e67 100644 (file)
@@ -4,8 +4,7 @@
  * FILE:            hal/halx86/generic/cmos.c
  * PURPOSE:         CMOS Access Routines (Real Time Clock and LastKnownGood)
  * PROGRAMMERS:     Alex Ionescu (alex.ionescu@reactos.org)
- *                  Eric Kohl (ekohl@abo.rhein-zeitung.de)
- *                  Timo Kreuzer (timo.kreuzer@reactos.org)
+ *                  Eric Kohl
  */
 
 /* INCLUDES ******************************************************************/
 
 /* GLOBALS *******************************************************************/
 
-KSPIN_LOCK HalpSystemHardwareLock;
 UCHAR HalpCmosCenturyOffset;
-ULONG HalpSystemHardwareFlags;
 
 /* PRIVATE FUNCTIONS *********************************************************/
 
-VOID
-NTAPI
-HalpAcquireSystemHardwareSpinLock(VOID)
-{
-    ULONG Flags;
-
-    /* Get flags and disable interrupts */
-    Flags = __readeflags();
-    _disable();
-
-    /* Try to acquire the lock */
-    while (InterlockedBitTestAndSet((PLONG)&HalpSystemHardwareLock, 0))
-    {
-        /* Lock is held, spin until it's free */
-        while (*(volatile ULONG*)HalpSystemHardwareLock & 1)
-            YieldProcessor();
-    }
-
-    /* We have the lock, save the flags now */
-    HalpSystemHardwareFlags = Flags;
-}
-
-VOID
-NTAPI
-HalpReleaseCmosSpinLock(VOID)
-{
-    ULONG Flags;
-
-    /* Get the flags */
-    Flags = HalpSystemHardwareFlags;
-
-    /* Release lock and check if we owned it */
-    if (!InterlockedBitTestAndReset((PLONG)&HalpSystemHardwareLock, 0))
-    {
-        /* The spin lock was not owned! */
-        KeBugCheckEx(SPIN_LOCK_NOT_OWNED, 0, 0, 0, 0);
-    }
-
-    /* Restore the flags */
-    __writeeflags(Flags);
-}
-
-FORCEINLINE
 UCHAR
+NTAPI
 HalpReadCmos(IN UCHAR Reg)
 {
     /* Select the register */
@@ -75,8 +30,8 @@ HalpReadCmos(IN UCHAR Reg)
     return READ_PORT_UCHAR(CMOS_DATA_PORT);
 }
 
-FORCEINLINE
 VOID
+NTAPI
 HalpWriteCmos(IN UCHAR Reg,
               IN UCHAR Value)
 {