U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] i2c: Fix i2c speed command
@ 2013-12-13 20:57 Darwin Rambo
  2013-12-14  4:52 ` Jagan Teki
  0 siblings, 1 reply; 2+ messages in thread
From: Darwin Rambo @ 2013-12-13 20:57 UTC (permalink / raw)
  To: u-boot

This corrects i2c core to interpret the value returned by
i2c_set_bus_speed as a success indicator rather than the
actual speed that was set. When i2c_set_bus_speed returns
a failure code, the speed is unknown so the adapter speed
is set to zero.

Signed-off-by: Darwin Rambo <drambo@broadcom.com>
Reviewed-by: Tim Kryger <tim.kryger@linaro.org>
Reviewed-by: Steve Rae <srae@broadcom.com>
---
 drivers/i2c/i2c_core.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/i2c_core.c b/drivers/i2c/i2c_core.c
index e1767f4..18d6736 100644
--- a/drivers/i2c/i2c_core.c
+++ b/drivers/i2c/i2c_core.c
@@ -349,7 +349,7 @@ unsigned int i2c_set_bus_speed(unsigned int speed)
 		return 0;
 	ret = I2C_ADAP->set_bus_speed(I2C_ADAP, speed);
 	if (gd->flags & GD_FLG_RELOC)
-		I2C_ADAP->speed = ret;
+		I2C_ADAP->speed = (ret == 0) ? speed : 0;
 
 	return ret;
 }
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH] i2c: Fix i2c speed command
  2013-12-13 20:57 [U-Boot] [PATCH] i2c: Fix i2c speed command Darwin Rambo
@ 2013-12-14  4:52 ` Jagan Teki
  0 siblings, 0 replies; 2+ messages in thread
From: Jagan Teki @ 2013-12-14  4:52 UTC (permalink / raw)
  To: u-boot

On Sat, Dec 14, 2013 at 2:27 AM, Darwin Rambo <drambo@broadcom.com> wrote:
> This corrects i2c core to interpret the value returned by
> i2c_set_bus_speed as a success indicator rather than the
> actual speed that was set. When i2c_set_bus_speed returns
> a failure code, the speed is unknown so the adapter speed
> is set to zero.
>
> Signed-off-by: Darwin Rambo <drambo@broadcom.com>
> Reviewed-by: Tim Kryger <tim.kryger@linaro.org>
> Reviewed-by: Steve Rae <srae@broadcom.com>
> ---
>  drivers/i2c/i2c_core.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/i2c/i2c_core.c b/drivers/i2c/i2c_core.c
> index e1767f4..18d6736 100644
> --- a/drivers/i2c/i2c_core.c
> +++ b/drivers/i2c/i2c_core.c
> @@ -349,7 +349,7 @@ unsigned int i2c_set_bus_speed(unsigned int speed)
>                 return 0;
>         ret = I2C_ADAP->set_bus_speed(I2C_ADAP, speed);
>         if (gd->flags & GD_FLG_RELOC)
> -               I2C_ADAP->speed = ret;
> +               I2C_ADAP->speed = (ret == 0) ? speed : 0;
>
>         return ret;
>  }

Acked-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>

-- 
Thanks,
Jagan.
--------
Jagannadha Sutradharudu Teki,
E: jagannadh.teki at gmail.com, P: +91-9676773388
Engineer - System Software Hacker
U-boot - SPI Custodian and Zynq APSOC
Ln: http://www.linkedin.com/in/jaganteki

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-12-14  4:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-13 20:57 [U-Boot] [PATCH] i2c: Fix i2c speed command Darwin Rambo
2013-12-14  4:52 ` Jagan Teki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox