mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2024-11-01 03:05:34 +00:00
parent
088a8bdafe
commit
9a1be9afdc
@ -357,7 +357,9 @@ rtw_cfg80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = {
|
|||||||
|
|
||||||
static u64 rtw_get_systime_us(void)
|
static u64 rtw_get_systime_us(void)
|
||||||
{
|
{
|
||||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39))
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0))
|
||||||
|
return ktime_to_us(ktime_get_boottime());
|
||||||
|
#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39))
|
||||||
struct timespec ts;
|
struct timespec ts;
|
||||||
get_monotonic_boottime(&ts);
|
get_monotonic_boottime(&ts);
|
||||||
return ((u64)ts.tv_sec*1000000) + ts.tv_nsec / 1000;
|
return ((u64)ts.tv_sec*1000000) + ts.tv_nsec / 1000;
|
||||||
|
Loading…
Reference in New Issue
Block a user