On Mon, Dec 21, 2009 at 09:28:32AM -0500, Mike Frysinger wrote:
> From: Sonic Zhang <[email protected]>

Failed to apply, not had a look at why.
 
> Signed-off-by: Sonic Zhang <[email protected]>
> Signed-off-by: Mike Frysinger <[email protected]>
> ---
>  drivers/i2c/busses/i2c-bfin-twi.c |   20 ++------------------
>  1 files changed, 2 insertions(+), 18 deletions(-)
> 
> diff --git a/drivers/i2c/busses/i2c-bfin-twi.c 
> b/drivers/i2c/busses/i2c-bfin-twi.c
> index 3495019..d157105 100644
> --- a/drivers/i2c/busses/i2c-bfin-twi.c
> +++ b/drivers/i2c/busses/i2c-bfin-twi.c
> @@ -357,15 +357,7 @@ static int bfin_twi_do_master_xfer(struct i2c_adapter 
> *adap,
>  static int bfin_twi_master_xfer(struct i2c_adapter *adap,
>                               struct i2c_msg *msgs, int num)
>  {
> -     int i, ret = 0;
> -
> -     for (i = 0; i < adap->retries; i++) {
> -             ret = bfin_twi_do_master_xfer(adap, msgs, num);
> -             if (ret > 0)
> -                     break;
> -     }
> -
> -     return ret;
> +     return bfin_twi_do_master_xfer(adap, msgs, num);
>  }
>  
>  /*
> @@ -573,16 +565,8 @@ int bfin_twi_smbus_xfer(struct i2c_adapter *adap, u16 
> addr,
>                       unsigned short flags, char read_write,
>                       u8 command, int size, union i2c_smbus_data *data)
>  {
> -     int i, ret = 0;
> -
> -     for (i = 0; i < adap->retries; i++) {
> -             ret = bfin_twi_do_smbus_xfer(adap, addr, flags,
> +     return bfin_twi_do_smbus_xfer(adap, addr, flags,
>                       read_write, command, size, data);
> -             if (ret == 0)
> -                     break;
> -     }
> -
> -     return ret;
>  }
>  
>  /*
> -- 
> 1.6.5.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
> the body of a message to [email protected]
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Ben ([email protected], http://www.fluff.org/)

  'a smiley only costs 4 bytes'
--
To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to