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
This commit is contained in:
Aniruddha Paul
2020-06-17 13:07:12 +05:30
committed by nshrivas
parent eb6c7aa478
commit ea81d9ac47
2 changed files with 22 additions and 1 deletions

View File

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

View File

@@ -77,6 +77,16 @@ static inline ktime_t __qdf_ktime_get(void)
return ktime_get();
}
/**
* __qdf_ktime_real_get() - Gets the current wall clock as ktime object
*
* Return: current wall clock as ktime object
*/
static inline ktime_t __qdf_ktime_real_get(void)
{
return ktime_get_real();
}
/**
* __qdf_ktime_add_ns() - Adds ktime object and nanoseconds value and
* returns the ktime object