]> Pileus Git - ~andy/linux/commitdiff
serial: sh-sci: Remove baud rate calculation algorithm 5
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Fri, 6 Dec 2013 09:59:11 +0000 (10:59 +0100)
committerSimon Horman <horms+renesas@verge.net.au>
Tue, 24 Dec 2013 02:17:30 +0000 (11:17 +0900)
The algorithm isn't used, remove it.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
drivers/tty/serial/sh-sci.c
include/linux/serial_sci.h

index e98a217e2fc09503c87e80cc32a36fd483bc98f6..eb59bb235a52d1316f0f72c3001e5a63cd458edf 100644 (file)
@@ -1825,8 +1825,6 @@ static unsigned int sci_scbrr_calc(unsigned int algo_id, unsigned int bps,
                return (((freq * 2) + 16 * bps) / (16 * bps) - 1);
        case SCBRR_ALGO_4:
                return (((freq * 2) + 16 * bps) / (32 * bps) - 1);
-       case SCBRR_ALGO_5:
-               return (((freq * 1000 / 32) / bps) - 1);
        }
 
        /* Warn, but use a safe default */
index 50fe651da965933f416b3cc6a5a0080942ac107e..babc5fe070b91fc8cc1470fe57d311583836c916 100644 (file)
@@ -15,7 +15,6 @@ enum {
        SCBRR_ALGO_2,           /* ((clk + 16 * bps) / (32 * bps) - 1) */
        SCBRR_ALGO_3,           /* (((clk * 2) + 16 * bps) / (16 * bps) - 1) */
        SCBRR_ALGO_4,           /* (((clk * 2) + 16 * bps) / (32 * bps) - 1) */
-       SCBRR_ALGO_5,           /* (((clk * 1000 / 32) / bps) - 1) */
        SCBRR_ALGO_6,           /* HSCIF variable sample rate algorithm */
 };