diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-03-15 17:45:03 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-03-15 17:45:03 +0000 |
commit | 5003cb8350bbb4a7e5a5a2d82d6c2165e1821e41 (patch) | |
tree | b297f9057ad20d8ba23592f5929e0c0263301931 /os/hal | |
parent | 78a8d8a0e3bedf4242dd73d461c3fb78b791cbd9 (diff) | |
download | ChibiOS-5003cb8350bbb4a7e5a5a2d82d6c2165e1821e41.tar.gz ChibiOS-5003cb8350bbb4a7e5a5a2d82d6c2165e1821e41.tar.bz2 ChibiOS-5003cb8350bbb4a7e5a5a2d82d6c2165e1821e41.zip |
Fixed bug #463.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6770 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/SPC5xx/FlexCAN_v1/can_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/SPC5xx/FlexCAN_v1/can_lld.c b/os/hal/platforms/SPC5xx/FlexCAN_v1/can_lld.c index eb04ffff0..625f44d19 100644 --- a/os/hal/platforms/SPC5xx/FlexCAN_v1/can_lld.c +++ b/os/hal/platforms/SPC5xx/FlexCAN_v1/can_lld.c @@ -221,7 +221,7 @@ static void can_lld_rx_handler(CANDriver *canp) { static void can_lld_err_handler(CANDriver *canp) {
uint32_t esr = canp->flexcan->ESR.R;
- eventflags_t flags = 0;
+ flagsmask_t flags = 0;
/* Error event.*/
if ((esr & CAN_ESR_TWRN_INT) || (esr & CAN_ESR_RWRN_INT)) {
|