summaryrefslogtreecommitdiff
path: root/src/osal/osal_none.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-05-20 14:38:34 +0700
committerhathach <[email protected]>2020-05-20 14:38:34 +0700
commitd8a15aca777abb0094935440f7cd551b36d62f43 (patch)
treeda61198d571756113eb47a0e9e3a047cb1e61a5e /src/osal/osal_none.h
parent88a455a9b99099bf27ce239006ecfd2da3894bcf (diff)
remove osal_queue_t const qhdl from osal API
since it doesn't make any differences.
Diffstat (limited to 'src/osal/osal_none.h')
-rw-r--r--src/osal/osal_none.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osal/osal_none.h b/src/osal/osal_none.h
index c9b762915..3bbf15119 100644
--- a/src/osal/osal_none.h
+++ b/src/osal/osal_none.h
@@ -176,7 +176,7 @@ static inline osal_queue_t osal_queue_create(osal_queue_def_t* qdef)
return (osal_queue_t) qdef;
}
-static inline bool osal_queue_receive(osal_queue_t const qhdl, void* data)
+static inline bool osal_queue_receive(osal_queue_t qhdl, void* data)
{
_osal_q_lock(qhdl);
bool success = tu_fifo_read(&qhdl->ff, data);
@@ -185,7 +185,7 @@ static inline bool osal_queue_receive(osal_queue_t const qhdl, void* data)
return success;
}
-static inline bool osal_queue_send(osal_queue_t const qhdl, void const * data, bool in_isr)
+static inline bool osal_queue_send(osal_queue_t qhdl, void const * data, bool in_isr)
{
if (!in_isr) {
_osal_q_lock(qhdl);
@@ -202,7 +202,7 @@ static inline bool osal_queue_send(osal_queue_t const qhdl, void const * data, b
return success;
}
-static inline bool osal_queue_empty(osal_queue_t const qhdl)
+static inline bool osal_queue_empty(osal_queue_t qhdl)
{
_osal_q_lock(qhdl);
bool is_empty = tu_fifo_empty(&qhdl->ff);