diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2014-12-10 14:42:05 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2015-02-25 13:53:28 +0900 |
commit | 89f99a62c1a50d1bad75de315c454c9cf56b2d8d (patch) | |
tree | a702c19a777e78e048b467e3edcbfbb03392e7cf /drivers | |
parent | 50bb94c9496113c8bb588c4d82f3d6c61279dc02 (diff) | |
download | u-boot-imx-89f99a62c1a50d1bad75de315c454c9cf56b2d8d.zip u-boot-imx-89f99a62c1a50d1bad75de315c454c9cf56b2d8d.tar.gz u-boot-imx-89f99a62c1a50d1bad75de315c454c9cf56b2d8d.tar.bz2 |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/serial_sh.c b/drivers/serial/serial_sh.c index 3641c9f..8693c1e 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 × 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)); |