drivers: serial: uart_stm32: Fix typo in register field name

The field is "NF: Noise detect flag". Given that every other field name is
faithful to the manual, do the same for NF.

Change-Id: I300663e6d5016bf28071d2a1926ec73682ae3d01
Signed-off-by: Amit Kucheria <amit.kucheria@linaro.org>
This commit is contained in:
Amit Kucheria 2016-08-09 01:13:11 +05:30 committed by Anas Nashif
commit 4c2802d6b7
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ union __sr {
struct {
uint32_t pe :1 __packed;
uint32_t fe :1 __packed;
uint32_t ne :1 __packed;
uint32_t nf :1 __packed;
uint32_t ore :1 __packed;
uint32_t idle :1 __packed;
uint32_t rxne :1 __packed;