diff options
Diffstat (limited to 'os/hal/platforms/MSP430/serial_lld.c')
-rw-r--r-- | os/hal/platforms/MSP430/serial_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/MSP430/serial_lld.c b/os/hal/platforms/MSP430/serial_lld.c index bdc3c580d..800243421 100644 --- a/os/hal/platforms/MSP430/serial_lld.c +++ b/os/hal/platforms/MSP430/serial_lld.c @@ -60,7 +60,7 @@ static const SerialConfig default_config = { /*===========================================================================*/
static void set_error(SerialDriver *sdp, uint8_t urctl) {
- chnflags_t sts = 0;
+ flagsmask_t sts = 0;
if (urctl & OE)
sts |= SD_OVERRUN_ERROR;
|