]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/csr/csr_time.c
Merge branch 'stanton-cs1-driver' of git://git.alsa-project.org/alsa-kprivate into...
[~andy/linux] / drivers / staging / csr / csr_time.c
index 83586ca34e8c55bc59c1830977153ed7b77e9923..7b597f7622a26d6445f18d2c5d169bd8588cf247 100644 (file)
 
 #include <linux/kernel.h>
 #include <linux/version.h>
-
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 33)
-#elif LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 16)
-#include <linux/autoconf.h>
-#include <linux/config.h>
-#endif
-
 #include <linux/time.h>
 #include <linux/module.h>
 
 
 CsrTime CsrTimeGet(CsrTime *high)
 {
-    struct timespec ts;
-    u64 time;
-    CsrTime low;
+       struct timespec ts;
+       u64 time;
+       CsrTime low;
 
-    ts = current_kernel_time();
-    time = (u64) ts.tv_sec * 1000000 + ts.tv_nsec / 1000;
+       ts = current_kernel_time();
+       time = (u64) ts.tv_sec * 1000000 + ts.tv_nsec / 1000;
 
-    if (high != NULL)
-    {
-        *high = (CsrTime) ((time >> 32) & 0xFFFFFFFF);
-    }
+       if (high != NULL)
+               *high = (CsrTime) ((time >> 32) & 0xFFFFFFFF);
 
-    low = (CsrTime) (time & 0xFFFFFFFF);
+       low = (CsrTime) (time & 0xFFFFFFFF);
 
-    return low;
+       return low;
 }
 EXPORT_SYMBOL_GPL(CsrTimeGet);