Skip to content

Commit

Permalink
serial: msm_geni_serial: Add support for more high speed baud rates
Browse files Browse the repository at this point in the history
Add support for more high speed baud rates

Change-Id: If608ca199575f1c7c2d0eb8ba0b7a64678cdd292
Signed-off-by: Girish Mahadevan <girishm@codeaurora.org>
  • Loading branch information
Girish Mahadevan authored and Gerrit - the friendly Code Review server committed Jan 27, 2018
1 parent 0043153 commit 3d6a467
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/tty/serial/msm_geni_serial.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, The Linux foundation. All rights reserved.
* Copyright (c) 2017-2018, The Linux foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
Expand Down Expand Up @@ -1727,7 +1727,8 @@ static int msm_geni_serial_startup(struct uart_port *uport)
static int get_clk_cfg(unsigned long clk_freq, unsigned long *ser_clk)
{
unsigned long root_freq[] = {7372800, 14745600, 19200000, 29491200,
32000000, 48000000, 64000000, 80000000, 96000000, 100000000};
32000000, 48000000, 64000000, 80000000, 96000000, 100000000,
102400000, 112000000, 120000000, 128000000};
int i;
int match = -1;

Expand Down

0 comments on commit 3d6a467

Please sign in to comment.