diff options
| author | Padma, Santhosh Kumar <skpadma@qti.qualcomm.com> | 2016-01-30 22:50:11 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-02-02 16:20:14 +0530 |
| commit | a79511b29a3e44f401c507cae6ef451c2c00af0d (patch) | |
| tree | a820fec4651a31c97c000290fb58ac6854c80ffd | |
| parent | 27f21ba47065916277bb1a499d97c3fd2ccc7fa8 (diff) | |
qcacld-2.0: Add voss wrapper for scnprintf
Currently function calls to Linux kernel function scnprintf
are invoked directly from what are supposed to be os-agnostic
portions of the driver. Add voss wrapper to call scnprintf.
Change-Id: I7cbcf5a1b84e34c45c6c34c9d8a38aa997e30f23
CRs-Fixed: 969888
| -rw-r--r-- | CORE/VOSS/inc/i_vos_trace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CORE/VOSS/inc/i_vos_trace.h b/CORE/VOSS/inc/i_vos_trace.h index daba8fda0cd0..26409392fe66 100644 --- a/CORE/VOSS/inc/i_vos_trace.h +++ b/CORE/VOSS/inc/i_vos_trace.h @@ -102,6 +102,7 @@ void vos_trace_set_module_trace_level(VOS_MODULE_ID module, uint32_t level); void __printf(3,4) vos_snprintf(char *strBuffer, unsigned int size, char *strFormat, ...); #define VOS_SNPRINTF vos_snprintf +#define vos_scnprintf scnprintf #ifdef VOS_ENABLE_TRACING |
