diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-31 07:12:10 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-31 07:12:10 +0000 |
commit | 1ee9f242d6bad952b79703f4719b3ba06780f7bc (patch) | |
tree | 3985cdf9c9ec622d847b38eb0e0f7bf1d7e8d9b3 | |
parent | 176729594ed9b40f00a7db98ddb33d55efe7e5eb (diff) | |
download | ChibiOS-1ee9f242d6bad952b79703f4719b3ba06780f7bc.tar.gz ChibiOS-1ee9f242d6bad952b79703f4719b3ba06780f7bc.tar.bz2 ChibiOS-1ee9f242d6bad952b79703f4719b3ba06780f7bc.zip |
Fixed an error.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2308 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/platforms/MSP430/pal_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/MSP430/pal_lld.h b/os/hal/platforms/MSP430/pal_lld.h index 954f6b5c2..3d2f0905d 100644 --- a/os/hal/platforms/MSP430/pal_lld.h +++ b/os/hal/platforms/MSP430/pal_lld.h @@ -139,7 +139,7 @@ typedef uint8_t ioportmask_t; * any assumption about it, use the provided macros when populating
* variables of this type.
*/
-typedef union msp430_ioport_t *ioportid_t;
+typedef msp430_ioport_t *ioportid_t;
/*===========================================================================*/
/* I/O Ports Identifiers. */
|