diff options
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/LPC13xx/pal_lld.h | 10 | ||||
-rw-r--r-- | os/hal/platforms/MSP430/pal_lld.h | 14 |
2 files changed, 12 insertions, 12 deletions
diff --git a/os/hal/platforms/LPC13xx/pal_lld.h b/os/hal/platforms/LPC13xx/pal_lld.h index 9e3c33695..4e145be80 100644 --- a/os/hal/platforms/LPC13xx/pal_lld.h +++ b/os/hal/platforms/LPC13xx/pal_lld.h @@ -51,7 +51,7 @@ typedef struct { uint32_t data;
/** Initial value for FIO_DIR register.*/
uint32_t dir;
-} LPC13xx_gpio_setup_t;
+} lpc13xx_gpio_setup_t;
/**
* @brief GPIO static initializer.
@@ -67,13 +67,13 @@ typedef struct { */
typedef struct {
/** @brief GPIO 0 setup data.*/
- LPC13xx_gpio_setup_t P0;
+ lpc13xx_gpio_setup_t P0;
/** @brief GPIO 1 setup data.*/
- LPC13xx_gpio_setup_t P1;
+ lpc13xx_gpio_setup_t P1;
/** @brief GPIO 2 setup data.*/
- LPC13xx_gpio_setup_t P2;
+ lpc13xx_gpio_setup_t P2;
/** @brief GPIO 3 setup data.*/
- LPC13xx_gpio_setup_t P3;
+ lpc13xx_gpio_setup_t P3;
} PALConfig;
/**
diff --git a/os/hal/platforms/MSP430/pal_lld.h b/os/hal/platforms/MSP430/pal_lld.h index 24c48d320..b1a12c924 100644 --- a/os/hal/platforms/MSP430/pal_lld.h +++ b/os/hal/platforms/MSP430/pal_lld.h @@ -47,7 +47,7 @@ * @details This structure represents the common part of all the MSP430 I/O
* ports.
*/
-struct port_common_t {
+struct msp430_port_common {
ioregister_t in;
ioregister_t out;
ioregister_t dir;
@@ -56,11 +56,11 @@ struct port_common_t { /**
* @brief Generic MSP430 I/O port.
*/
-union __ioport {
- struct port_common_t iop_common;
- struct port_simple_t iop_simple;
- struct port_full_t iop_full;
-};
+typedef union {
+ struct msp430_port_common iop_common;
+ struct port_simple_t iop_simple;
+ struct port_full_t iop_full;
+} msp430_ioport_t;
/**
* @brief Setup registers common to all the MSP430 ports.
@@ -138,7 +138,7 @@ typedef uint8_t ioportmask_t; * any assumption about it, use the provided macros when populating
* variables of this type.
*/
-typedef union __ioport * ioportid_t;
+typedef union msp430_ioport_t *ioportid_t;
/*===========================================================================*/
/* I/O Ports Identifiers. */
|