qcacmn: Add qdf API wrapper for ktime_real_get
Add qdf wrapper API to the ktime_real(). This gives the current wallclock in ktime format. Change-Id: If869985007225606075fb936593d5798ea0746e9
Этот коммит содержится в:

коммит произвёл
nshrivas

родитель
eb6c7aa478
Коммит
ea81d9ac47
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2014-2019 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2014-2020 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -66,6 +66,17 @@ static inline qdf_ktime_t qdf_ktime_get(void)
|
||||
return __qdf_ktime_get();
|
||||
}
|
||||
|
||||
/**
|
||||
* qdf_ktime_real_get - Gets the current wall clock as qdf_ktime_t object
|
||||
*
|
||||
* Return: current wall clock as qdf_ktime_t object
|
||||
*/
|
||||
|
||||
static inline qdf_ktime_t qdf_ktime_real_get(void)
|
||||
{
|
||||
return __qdf_ktime_real_get();
|
||||
}
|
||||
|
||||
/**
|
||||
* qdf_ktime_add_ns - Adds qdf_ktime_t object and nanoseconds value and
|
||||
* returns the qdf_ktime_t object
|
||||
|
Ссылка в новой задаче
Block a user