diff options
author | Nicolas Kaiser <nikai@nikai.net> | 2010-11-18 14:24:02 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-21 10:09:53 -0800 |
commit | ddab1a3b30452bf6d2a2780dbb5fd962a85bec48 (patch) | |
tree | 9e3715ef860d797849709797fc10ae7642c87277 /drivers/net | |
parent | 33ac0b84eecaf5e7ee3baa3ef8294e8d8d267cd6 (diff) | |
download | linux-3.10-ddab1a3b30452bf6d2a2780dbb5fd962a85bec48.tar.gz linux-3.10-ddab1a3b30452bf6d2a2780dbb5fd962a85bec48.tar.bz2 linux-3.10-ddab1a3b30452bf6d2a2780dbb5fd962a85bec48.zip |
SuperH IrDA: correct Baud rate error correction
It looks to me as if the second value of rate_err_array is intended
to be a decimal 625. However, with a leading 0 it becomes an octal
constant, and as such evaluates to a decimal 405.
Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/irda/sh_sir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/irda/sh_sir.c b/drivers/net/irda/sh_sir.c index 00b38bccd6d..52a7c86af66 100644 --- a/drivers/net/irda/sh_sir.c +++ b/drivers/net/irda/sh_sir.c @@ -258,7 +258,7 @@ static int sh_sir_set_baudrate(struct sh_sir_self *self, u32 baudrate) /* Baud Rate Error Correction x 10000 */ u32 rate_err_array[] = { - 0000, 0625, 1250, 1875, + 0, 625, 1250, 1875, 2500, 3125, 3750, 4375, 5000, 5625, 6250, 6875, 7500, 8125, 8750, 9375, |