From: Graf Yang Date: Sat, 22 May 2010 22:00:10 +0000 (+0000) Subject: net/irda: bfin_sir: IRDA is not affected by anomaly 05000230 X-Git-Tag: Ubuntu-goldfish-3.4.0-4.27~7128^2~15 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=eda6e6f86b5f95b982ac7ebf7cf5be2a29a291e9;p=mirror_ubuntu-zesty-kernel.git net/irda: bfin_sir: IRDA is not affected by anomaly 05000230 Anomaly 05000230 (over sampling of the UART STOP bit) applies only when the peripheral is operating in UART mode. So drop the anomaly handling in the IRDA code. Signed-off-by: Graf Yang Signed-off-by: Mike Frysinger Signed-off-by: David S. Miller --- diff --git a/drivers/net/irda/bfin_sir.c b/drivers/net/irda/bfin_sir.c index 911c082cee5a..f940dfa1f7f8 100644 --- a/drivers/net/irda/bfin_sir.c +++ b/drivers/net/irda/bfin_sir.c @@ -107,8 +107,12 @@ static int bfin_sir_set_speed(struct bfin_sir_port *port, int speed) case 57600: case 115200: - quot = (port->clk + (8 * speed)) / (16 * speed)\ - - ANOMALY_05000230; + /* + * IRDA is not affected by anomaly 05000230, so there is no + * need to tweak the divisor like he UART driver (which will + * slightly speed up the baud rate on us). + */ + quot = (port->clk + (8 * speed)) / (16 * speed); do { udelay(utime);