Fix build with 4.20-rc1

Ref: 976516404f
     8498887660
This commit is contained in:
MilhouseVH 2018-11-05 03:16:25 +00:00
parent 088a8bdafe
commit 9a1be9afdc

View File

@ -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;