aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/bfin_sport_uart.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/tty/serial/bfin_sport_uart.c')
-rw-r--r--drivers/tty/serial/bfin_sport_uart.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/tty/serial/bfin_sport_uart.c b/drivers/tty/serial/bfin_sport_uart.c
index d62d8daac8ab..984e1c050096 100644
--- a/drivers/tty/serial/bfin_sport_uart.c
+++ b/drivers/tty/serial/bfin_sport_uart.c
@@ -517,14 +517,15 @@ static void sport_set_termios(struct uart_port *port,
517 up->csize = 5; 517 up->csize = 5;
518 break; 518 break;
519 default: 519 default:
520 pr_warning("requested word length not supported\n"); 520 pr_warn("requested word length not supported\n");
521 break;
521 } 522 }
522 523
523 if (termios->c_cflag & CSTOPB) { 524 if (termios->c_cflag & CSTOPB) {
524 up->stopb = 1; 525 up->stopb = 1;
525 } 526 }
526 if (termios->c_cflag & PARENB) { 527 if (termios->c_cflag & PARENB) {
527 pr_warning("PAREN bits is not supported yet\n"); 528 pr_warn("PAREN bit is not supported yet\n");
528 /* up->parib = 1; */ 529 /* up->parib = 1; */
529 } 530 }
530 531