u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] board:universal: fix i2c adapter
@ 2014-01-14  7:15 Piotr Wilczek
  2014-01-14  8:19 ` Przemyslaw Marczak
  2014-01-20 23:00 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Piotr Wilczek @ 2014-01-14  7:15 UTC (permalink / raw)
  To: u-boot

Universal uses only one adapter I2C_0.

Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 board/samsung/universal_c210/universal.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c
index 54d0e1e..3feef3f 100644
--- a/board/samsung/universal_c210/universal.c
+++ b/board/samsung/universal_c210/universal.c
@@ -49,7 +49,7 @@ int power_init_board(void)
 	 * For PMIC the I2C bus is named as I2C5, but it is connected
 	 * to logical I2C adapter 0
 	 */
-	ret = pmic_init(I2C_5);
+	ret = pmic_init(I2C_0);
 	if (ret)
 		return ret;
 
-- 
1.7.9.5

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

* [U-Boot] [PATCH] board:universal: fix i2c adapter
  2014-01-14  7:15 [U-Boot] [PATCH] board:universal: fix i2c adapter Piotr Wilczek
@ 2014-01-14  8:19 ` Przemyslaw Marczak
  2014-01-20 14:06   ` Przemyslaw Marczak
  2014-01-20 23:00 ` [U-Boot] " Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Przemyslaw Marczak @ 2014-01-14  8:19 UTC (permalink / raw)
  To: u-boot

Hi,

On 01/14/2014 08:15 AM, Piotr Wilczek wrote:
> Universal uses only one adapter I2C_0.
>
> Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
>   board/samsung/universal_c210/universal.c |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c
> index 54d0e1e..3feef3f 100644
> --- a/board/samsung/universal_c210/universal.c
> +++ b/board/samsung/universal_c210/universal.c
> @@ -49,7 +49,7 @@ int power_init_board(void)
>   	 * For PMIC the I2C bus is named as I2C5, but it is connected
>   	 * to logical I2C adapter 0
>   	 */
> -	ret = pmic_init(I2C_5);
> +	ret = pmic_init(I2C_0);
>   	if (ret)
>   		return ret;
>
>

Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>

Thank you,
-- 
Przemyslaw Marczak
Samsung R&D Institute Poland
Samsung Electronics
p.marczak at samsung.com

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

* [U-Boot] [PATCH] board:universal: fix i2c adapter
  2014-01-14  8:19 ` Przemyslaw Marczak
@ 2014-01-20 14:06   ` Przemyslaw Marczak
  0 siblings, 0 replies; 4+ messages in thread
From: Przemyslaw Marczak @ 2014-01-20 14:06 UTC (permalink / raw)
  To: u-boot

Hello Tom,

On 01/14/2014 09:19 AM, Przemyslaw Marczak wrote:
> Hi,
>
> On 01/14/2014 08:15 AM, Piotr Wilczek wrote:
>> Universal uses only one adapter I2C_0.
>>
>> Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>>   board/samsung/universal_c210/universal.c |    2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/board/samsung/universal_c210/universal.c
>> b/board/samsung/universal_c210/universal.c
>> index 54d0e1e..3feef3f 100644
>> --- a/board/samsung/universal_c210/universal.c
>> +++ b/board/samsung/universal_c210/universal.c
>> @@ -49,7 +49,7 @@ int power_init_board(void)
>>        * For PMIC the I2C bus is named as I2C5, but it is connected
>>        * to logical I2C adapter 0
>>        */
>> -    ret = pmic_init(I2C_5);
>> +    ret = pmic_init(I2C_0);
>>       if (ret)
>>           return ret;
>>
>>
>
> Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>
>
> Thank you,

This patch was missed, could you please apply this to the release?

Thank you,
-- 
Przemyslaw Marczak
Samsung R&D Institute Poland
Samsung Electronics
p.marczak at samsung.com

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

* [U-Boot] board:universal: fix i2c adapter
  2014-01-14  7:15 [U-Boot] [PATCH] board:universal: fix i2c adapter Piotr Wilczek
  2014-01-14  8:19 ` Przemyslaw Marczak
@ 2014-01-20 23:00 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2014-01-20 23:00 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 14, 2014 at 08:15:07AM +0100, Piotr Wilczek wrote:

> Universal uses only one adapter I2C_0.
> 
> Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140120/10705d55/attachment.pgp>

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

end of thread, other threads:[~2014-01-20 23:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-14  7:15 [U-Boot] [PATCH] board:universal: fix i2c adapter Piotr Wilczek
2014-01-14  8:19 ` Przemyslaw Marczak
2014-01-20 14:06   ` Przemyslaw Marczak
2014-01-20 23:00 ` [U-Boot] " Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).