aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/AVR
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-09-16 09:08:43 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-09-16 09:08:43 +0000
commitf90a0f37906a9363a6e702d8ac1c4c8257370efa (patch)
treedf0521c93a97691638a0227a17c64ddfc59d1080 /os/hal/platforms/AVR
parentdfb876b3a1263c627465dfc6e3b76d5bab6c052e (diff)
downloadChibiOS-f90a0f37906a9363a6e702d8ac1c4c8257370efa.tar.gz
ChibiOS-f90a0f37906a9363a6e702d8ac1c4c8257370efa.tar.bz2
ChibiOS-f90a0f37906a9363a6e702d8ac1c4c8257370efa.zip
Removed flags handling in BaseAsynchronousChannel. Modified serial drivers to use the new event flags.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4671 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/AVR')
-rw-r--r--os/hal/platforms/AVR/serial_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/AVR/serial_lld.c b/os/hal/platforms/AVR/serial_lld.c
index c35cdca4b..ce7a928f0 100644
--- a/os/hal/platforms/AVR/serial_lld.c
+++ b/os/hal/platforms/AVR/serial_lld.c
@@ -70,7 +70,7 @@ static const SerialConfig default_config = {
/*===========================================================================*/
static void set_error(uint8_t sra, SerialDriver *sdp) {
- chnflags_t sts = 0;
+ flagsmask_t sts = 0;
uint8_t dor = 0;
uint8_t upe = 0;
uint8_t fe = 0;