git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8718 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
Giovanni Di Sirio 2016-01-07 21:36:50 +00:00
parent 1206167e18
commit 5aa3c4b505
5 changed files with 6 additions and 6 deletions

View File

@ -548,7 +548,7 @@ static inline void osalSysUnlockFromISR(void) {
* *
* @xclass * @xclass
*/ */
static inline syssts_t osalSysGetStatusAndLockX(void) { static inline syssts_t osalSysGetStatusAndLockX(void) {
return chSysGetStatusAndLockX(); return chSysGetStatusAndLockX();
} }

View File

@ -664,7 +664,7 @@ static inline void osalSysUnlockFromISR(void) {
* *
* @xclass * @xclass
*/ */
static inline syssts_t osalSysGetStatusAndLockX(void) { static inline syssts_t osalSysGetStatusAndLockX(void) {
syssts_t sts; syssts_t sts;
#if CORTEX_MODEL == 0 #if CORTEX_MODEL == 0

View File

@ -539,7 +539,7 @@ static inline void osalSysUnlockFromISR(void) {
* *
* @xclass * @xclass
*/ */
static inline syssts_t osalSysGetStatusAndLockX(void) { static inline syssts_t osalSysGetStatusAndLockX(void) {
return chSysGetStatusAndLockX(); return chSysGetStatusAndLockX();
} }

View File

@ -54,7 +54,7 @@
/** /**
* @brief AVR setup registers. * @brief AVR setup registers.
*/ */
typedef struct { typedef struct {
uint8_t out; uint8_t out;
uint8_t dir; uint8_t dir;
} avr_gpio_setup_t; } avr_gpio_setup_t;
@ -65,7 +65,7 @@ typedef struct {
* ports, the ports with abnormal layout cannot be used through * ports, the ports with abnormal layout cannot be used through
* PAL driver. Example: PORT F on Mega128. * PAL driver. Example: PORT F on Mega128.
*/ */
typedef struct { typedef struct {
volatile uint8_t in; volatile uint8_t in;
volatile uint8_t dir; volatile uint8_t dir;
volatile uint8_t out; volatile uint8_t out;

View File

@ -561,7 +561,7 @@ static inline void osalSysUnlockFromISR(void) {
* *
* @xclass * @xclass
*/ */
static inline syssts_t osalSysGetStatusAndLockX(void) { static inline syssts_t osalSysGetStatusAndLockX(void) {
return (syssts_t)0; return (syssts_t)0;
} }