summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorNobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>2014-12-10 14:42:05 +0900
committerNobuhiro Iwamatsu <iwamatsu@nigauri.org>2015-02-25 13:53:28 +0900
commit89f99a62c1a50d1bad75de315c454c9cf56b2d8d (patch)
treea702c19a777e78e048b467e3edcbfbb03392e7cf /drivers
parent50bb94c9496113c8bb588c4d82f3d6c61279dc02 (diff)
downloadtalos-obmc-uboot-89f99a62c1a50d1bad75de315c454c9cf56b2d8d.tar.gz
talos-obmc-uboot-89f99a62c1a50d1bad75de315c454c9cf56b2d8d.zip
serial: sh: Remove invalid UTF-8 character
serial_sh.c contains invalid UTF-8 character. This deletes the character. Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/serial/serial_sh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/serial_sh.c b/drivers/serial/serial_sh.c
index 3641c9f834..8693c1ed14 100644
--- a/drivers/serial/serial_sh.c
+++ b/drivers/serial/serial_sh.c
@@ -69,7 +69,7 @@ sh_serial_setbrg_generic(struct uart_port *port, int clk, int baudrate)
if (port->clk_mode == EXT_CLK) {
unsigned short dl = DL_VALUE(baudrate, clk);
sci_out(port, DL, dl);
- /* Need wait: Clock * 1/dl $B!_(B 1/16 */
+ /* Need wait: Clock * 1/dl * 1/16 */
udelay((1000000 * dl * 16 / clk) * 1000 + 1);
} else {
sci_out(port, SCBRR, SCBRR_VALUE(baudrate, clk));
OpenPOWER on IntegriCloud