]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
serial: exar: Fix feature control register constants
authorJan Kiszka <jan.kiszka@siemens.com>
Wed, 8 Feb 2017 16:09:05 +0000 (17:09 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Feb 2017 14:12:38 +0000 (15:12 +0100)
According to the XR17V352 manual, bit 4 is IrDA control and bit 5 for
485. Fortunately, no driver used them so far.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/uapi/linux/serial_reg.h

index 274d8fc206e3263092e03fdf0be97619cc50fa69..25b93a764a1a18a9c1bd6c314dec021b11870b64 100644 (file)
 #define UART_EXAR_DVID         0x8d    /* Device identification */
 
 #define UART_EXAR_FCTR         0x08    /* Feature Control Register */
-#define UART_FCTR_EXAR_IRDA    0x08    /* IrDa data encode select */
-#define UART_FCTR_EXAR_485     0x10    /* Auto 485 half duplex dir ctl */
+#define UART_FCTR_EXAR_IRDA    0x10    /* IrDa data encode select */
+#define UART_FCTR_EXAR_485     0x20    /* Auto 485 half duplex dir ctl */
 #define UART_FCTR_EXAR_TRGA    0x00    /* FIFO trigger table A */
 #define UART_FCTR_EXAR_TRGB    0x60    /* FIFO trigger table B */
 #define UART_FCTR_EXAR_TRGC    0x80    /* FIFO trigger table C */