Fix a bug with PL010s running at 19200 baud
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>
Fri, 7 Apr 2017 16:48:22 +0000 (09:48 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 13 Apr 2017 13:41:08 +0000 (09:41 -0400)
I don't have the hardware test this, but it is almost certainly a typo
in the code dating back to at least 2004.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
drivers/serial/serial_pl01x.c

index a49134a..941b424 100644 (file)
@@ -117,7 +117,7 @@ static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
                        divisor = UART_PL010_BAUD_9600;
                        break;
                case 19200:
-                       divisor = UART_PL010_BAUD_9600;
+                       divisor = UART_PL010_BAUD_19200;
                        break;
                case 38400:
                        divisor = UART_PL010_BAUD_38400;