aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/hal_queues.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-01-04 15:11:17 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-01-04 15:11:17 +0000
commit788175c0883ca8b9aa5c46918c98cd906efdeb9b (patch)
tree7cc13ab262a83f3c2140e10231e4694c4e565ea1 /os/hal/include/hal_queues.h
parent5c2d43e6912254b2a51c01e6bb6e285d1dfc40ca (diff)
downloadChibiOS-788175c0883ca8b9aa5c46918c98cd906efdeb9b.tar.gz
ChibiOS-788175c0883ca8b9aa5c46918c98cd906efdeb9b.tar.bz2
ChibiOS-788175c0883ca8b9aa5c46918c98cd906efdeb9b.zip
HAL MISRA-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8687 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include/hal_queues.h')
-rw-r--r--os/hal/include/hal_queues.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/os/hal/include/hal_queues.h b/os/hal/include/hal_queues.h
index 42d70953a..144a4a123 100644
--- a/os/hal/include/hal_queues.h
+++ b/os/hal/include/hal_queues.h
@@ -174,8 +174,10 @@ typedef io_queue_t input_queue_t;
*
* @iclass
*/
-#define iqIsFullI(iqp) ((bool)(((iqp)->q_wrptr == (iqp)->q_rdptr) && \
- ((iqp)->q_counter != 0U)))
+#define iqIsFullI(iqp) \
+ /*lint -save -e9007 [13.5] No side effects, a pointer is passed.*/ \
+ ((bool)(((iqp)->q_wrptr == (iqp)->q_rdptr) && ((iqp)->q_counter != 0U))) \
+ /*lint -restore*/
/**
* @brief Input queue read.
@@ -240,8 +242,10 @@ typedef io_queue_t output_queue_t;
*
* @iclass
*/
-#define oqIsEmptyI(oqp) ((bool)(((oqp)->q_wrptr == (oqp)->q_rdptr) && \
- ((oqp)->q_counter != 0U)))
+#define oqIsEmptyI(oqp) \
+ /*lint -save -e9007 [13.5] No side effects, a pointer is passed.*/ \
+ ((bool)(((oqp)->q_wrptr == (oqp)->q_rdptr) && ((oqp)->q_counter != 0U))) \
+ /*lint -restore*/
/**
* @brief Evaluates to @p true if the specified output queue is full.