diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-09 10:48:08 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-09 10:48:08 +0000 |
commit | b7985b957d0c259e9869763199c5cbf8ae9f4709 (patch) | |
tree | cb1cff3966c06b52cbba51cceb4b659dd9f25562 /os/hal/templates/st_lld.h | |
parent | ce7f7103df5f634f7b57d90e115c5824adcb68a0 (diff) | |
download | ChibiOS-b7985b957d0c259e9869763199c5cbf8ae9f4709.tar.gz ChibiOS-b7985b957d0c259e9869763199c5cbf8ae9f4709.tar.bz2 ChibiOS-b7985b957d0c259e9869763199c5cbf8ae9f4709.zip |
MISRA pass on low level device drivers templates.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7739 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/templates/st_lld.h')
-rw-r--r-- | os/hal/templates/st_lld.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/templates/st_lld.h b/os/hal/templates/st_lld.h index cded1fabd..eefd691df 100644 --- a/os/hal/templates/st_lld.h +++ b/os/hal/templates/st_lld.h @@ -80,13 +80,13 @@ static inline systime_t st_lld_get_counter(void) { * @note Makes sure that no spurious alarms are triggered after
* this call.
*
- * @param[in] time the time to be set for the first alarm
+ * @param[in] abstime the time to be set for the first alarm
*
* @notapi
*/
-static inline void st_lld_start_alarm(systime_t time) {
+static inline void st_lld_start_alarm(systime_t abstime) {
- (void)time;
+ (void)abstime;
}
/**
@@ -101,13 +101,13 @@ static inline void st_lld_stop_alarm(void) { /**
* @brief Sets the alarm time.
*
- * @param[in] time the time to be set for the next alarm
+ * @param[in] abstime the time to be set for the next alarm
*
* @notapi
*/
-static inline void st_lld_set_alarm(systime_t time) {
+static inline void st_lld_set_alarm(systime_t abstime) {
- (void)time;
+ (void)abstime;
}
/**
|