summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CORE/VOSS/src/vos_memory.c6
-rw-r--r--CORE/VOSS/src/vos_timer.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/CORE/VOSS/src/vos_memory.c b/CORE/VOSS/src/vos_memory.c
index 55e15d8b20d6..4a3ce77cf510 100644
--- a/CORE/VOSS/src/vos_memory.c
+++ b/CORE/VOSS/src/vos_memory.c
@@ -621,7 +621,7 @@ v_VOID_t vos_mem_copy( v_VOID_t *pDst, const v_VOID_t *pSrc, v_SIZE_t numBytes )
if ((pDst == NULL) || (pSrc==NULL))
{
VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
- "%s called with NULL parameter, source:%p destination:%p",
+ "%s called with NULL parameter, source:%pK destination:%pK",
__func__, pSrc, pDst);
VOS_ASSERT(0);
return;
@@ -640,7 +640,7 @@ v_VOID_t vos_mem_move( v_VOID_t *pDst, const v_VOID_t *pSrc, v_SIZE_t numBytes )
if ((pDst == NULL) || (pSrc==NULL))
{
VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
- "%s called with NULL parameter, source:%p destination:%p",
+ "%s called with NULL parameter, source:%pK destination:%pK",
__func__, pSrc, pDst);
VOS_ASSERT(0);
return;
@@ -659,7 +659,7 @@ v_BOOL_t vos_mem_compare(const v_VOID_t *pMemory1, const v_VOID_t *pMemory2, v_U
if ((pMemory1 == NULL) || (pMemory2==NULL))
{
VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
- "%s called with NULL parameter, p1:%p p2:%p",
+ "%s called with NULL parameter, p1:%pK p2:%pK",
__func__, pMemory1, pMemory2);
VOS_ASSERT(0);
return VOS_FALSE;
diff --git a/CORE/VOSS/src/vos_timer.c b/CORE/VOSS/src/vos_timer.c
index cca2a09c667a..9b0cc8df6f76 100644
--- a/CORE/VOSS/src/vos_timer.c
+++ b/CORE/VOSS/src/vos_timer.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012-2013, 2015-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2013, 2015-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -697,7 +697,7 @@ VOS_STATUS vos_timer_start( vos_timer_t *timer, v_U32_t expirationTime )
unsigned long flags;
VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_INFO_HIGH,
- "Timer Addr inside voss_start : 0x%p ", timer );
+ "Timer Addr inside voss_start : 0x%pK ", timer );
// Check for invalid pointer
if ( NULL == timer )
@@ -789,7 +789,7 @@ VOS_STATUS vos_timer_stop ( vos_timer_t *timer )
unsigned long flags;
VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_INFO_HIGH,
- "%s: Timer Addr inside voss_stop : 0x%p",__func__,timer );
+ "%s: Timer Addr inside voss_stop : 0x%pK",__func__,timer );
// Check for invalid pointer
if ( NULL == timer )