diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-04 15:11:17 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-04 15:11:17 +0000 |
commit | 788175c0883ca8b9aa5c46918c98cd906efdeb9b (patch) | |
tree | 7cc13ab262a83f3c2140e10231e4694c4e565ea1 /os/hal/src/wdg.c | |
parent | 5c2d43e6912254b2a51c01e6bb6e285d1dfc40ca (diff) | |
download | ChibiOS-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/src/wdg.c')
-rw-r--r-- | os/hal/src/wdg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/src/wdg.c b/os/hal/src/wdg.c index deb8e0ce9..949b0bb36 100644 --- a/os/hal/src/wdg.c +++ b/os/hal/src/wdg.c @@ -24,7 +24,7 @@ #include "hal.h"
-#if HAL_USE_WDG || defined(__DOXYGEN__)
+#if (HAL_USE_WDG == TRUE) || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver local definitions. */
@@ -115,6 +115,6 @@ void wdgReset(WDGDriver *wdgp) { osalSysUnlock();
}
-#endif /* HAL_USE_WDG */
+#endif /* HAL_USE_WDG == TRUE */
/** @} */
|