diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-07 21:36:50 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-07 21:36:50 +0000 |
commit | 5aa3c4b50591abb89a9800169b1307f0795a00fe (patch) | |
tree | 78e185ea9d5bd6d63c558793e55bb306484c5010 /os | |
parent | 1206167e18e05276ee8987e3a0934f5e143f8e10 (diff) | |
download | ChibiOS-5aa3c4b50591abb89a9800169b1307f0795a00fe.tar.gz ChibiOS-5aa3c4b50591abb89a9800169b1307f0795a00fe.tar.bz2 ChibiOS-5aa3c4b50591abb89a9800169b1307f0795a00fe.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8718 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/osal/nil/osal.h | 2 | ||||
-rw-r--r-- | os/hal/osal/os-less/ARMCMx/osal.h | 2 | ||||
-rw-r--r-- | os/hal/osal/rt/osal.h | 2 | ||||
-rw-r--r-- | os/hal/ports/AVR/pal_lld.h | 4 | ||||
-rw-r--r-- | os/hal/templates/osal/osal.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/osal/nil/osal.h b/os/hal/osal/nil/osal.h index d4538bc7b..bde9aa44f 100644 --- a/os/hal/osal/nil/osal.h +++ b/os/hal/osal/nil/osal.h @@ -548,7 +548,7 @@ static inline void osalSysUnlockFromISR(void) { *
* @xclass
*/
-static inline syssts_t osalSysGetStatusAndLockX(void) {
+static inline syssts_t osalSysGetStatusAndLockX(void) {
return chSysGetStatusAndLockX();
}
diff --git a/os/hal/osal/os-less/ARMCMx/osal.h b/os/hal/osal/os-less/ARMCMx/osal.h index 3887f8f04..032bd6a4c 100644 --- a/os/hal/osal/os-less/ARMCMx/osal.h +++ b/os/hal/osal/os-less/ARMCMx/osal.h @@ -664,7 +664,7 @@ static inline void osalSysUnlockFromISR(void) { *
* @xclass
*/
-static inline syssts_t osalSysGetStatusAndLockX(void) {
+static inline syssts_t osalSysGetStatusAndLockX(void) {
syssts_t sts;
#if CORTEX_MODEL == 0
diff --git a/os/hal/osal/rt/osal.h b/os/hal/osal/rt/osal.h index 96b493905..5003bfe53 100644 --- a/os/hal/osal/rt/osal.h +++ b/os/hal/osal/rt/osal.h @@ -539,7 +539,7 @@ static inline void osalSysUnlockFromISR(void) { *
* @xclass
*/
-static inline syssts_t osalSysGetStatusAndLockX(void) {
+static inline syssts_t osalSysGetStatusAndLockX(void) {
return chSysGetStatusAndLockX();
}
diff --git a/os/hal/ports/AVR/pal_lld.h b/os/hal/ports/AVR/pal_lld.h index b69539ae9..209744c72 100644 --- a/os/hal/ports/AVR/pal_lld.h +++ b/os/hal/ports/AVR/pal_lld.h @@ -54,7 +54,7 @@ /**
* @brief AVR setup registers.
*/
-typedef struct {
+typedef struct {
uint8_t out;
uint8_t dir;
} avr_gpio_setup_t;
@@ -65,7 +65,7 @@ typedef struct { * ports, the ports with abnormal layout cannot be used through
* PAL driver. Example: PORT F on Mega128.
*/
-typedef struct {
+typedef struct {
volatile uint8_t in;
volatile uint8_t dir;
volatile uint8_t out;
diff --git a/os/hal/templates/osal/osal.h b/os/hal/templates/osal/osal.h index f0ead5c0b..1ad861842 100644 --- a/os/hal/templates/osal/osal.h +++ b/os/hal/templates/osal/osal.h @@ -561,7 +561,7 @@ static inline void osalSysUnlockFromISR(void) { *
* @xclass
*/
-static inline syssts_t osalSysGetStatusAndLockX(void) {
+static inline syssts_t osalSysGetStatusAndLockX(void) {
return (syssts_t)0;
}
|