All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case
@ 2019-12-20 17:59 Fabio Estevam
  2019-12-20 17:59 ` [PATCH 2/3] mx6sllevk: " Fabio Estevam
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Fabio Estevam @ 2019-12-20 17:59 UTC (permalink / raw)
  To: u-boot

When pmic_get() is used with DM the first parameter must be
the complete node name plus the unit address, so fix it
accordingly.

Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/mx7dsabresd/mx7dsabresd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c
index f1120d67e3..05cf8c8c7c 100644
--- a/board/freescale/mx7dsabresd/mx7dsabresd.c
+++ b/board/freescale/mx7dsabresd/mx7dsabresd.c
@@ -326,7 +326,7 @@ int power_init_board(void)
 	struct udevice *dev;
 	int ret, dev_id, rev_id;
 
-	ret = pmic_get("pfuze3000", &dev);
+	ret = pmic_get("pfuze3000 at 08", &dev);
 	if (ret == -ENODEV)
 		return 0;
 	if (ret != 0)
-- 
2.17.1

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

* [PATCH 2/3] mx6sllevk: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case Fabio Estevam
@ 2019-12-20 17:59 ` Fabio Estevam
  2019-12-23  6:47   ` Peng Fan
  2020-01-04 11:00   ` sbabic at denx.de
  2019-12-20 17:59 ` [PATCH 3/3] mx6slevk: " Fabio Estevam
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Fabio Estevam @ 2019-12-20 17:59 UTC (permalink / raw)
  To: u-boot

When pmic_get() is used with DM the first parameter must be
the complete node name plus the unit address, so fix it
accordingly.

Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/mx6sllevk/mx6sllevk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/freescale/mx6sllevk/mx6sllevk.c b/board/freescale/mx6sllevk/mx6sllevk.c
index 227d178e07..0a36b46e9e 100644
--- a/board/freescale/mx6sllevk/mx6sllevk.c
+++ b/board/freescale/mx6sllevk/mx6sllevk.c
@@ -57,7 +57,7 @@ int power_init_board(void)
 	u32 switch_num = 6;
 	u32 offset = PFUZE100_SW1CMODE;
 
-	ret = pmic_get("pfuze100", &dev);
+	ret = pmic_get("pfuze100 at 08", &dev);
 	if (ret == -ENODEV)
 		return 0;
 
-- 
2.17.1

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

* [PATCH 3/3] mx6slevk: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case Fabio Estevam
  2019-12-20 17:59 ` [PATCH 2/3] mx6sllevk: " Fabio Estevam
@ 2019-12-20 17:59 ` Fabio Estevam
  2019-12-23  6:47   ` Peng Fan
  2020-01-04 11:03   ` sbabic at denx.de
  2019-12-23  6:47 ` [PATCH 1/3] mx7dsabresd: " Peng Fan
  2020-01-04 11:03 ` sbabic at denx.de
  3 siblings, 2 replies; 9+ messages in thread
From: Fabio Estevam @ 2019-12-20 17:59 UTC (permalink / raw)
  To: u-boot

When pmic_get() is used with DM the first parameter must be
the complete node name plus the unit address, so fix it
accordingly.

Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/mx6slevk/mx6slevk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/freescale/mx6slevk/mx6slevk.c b/board/freescale/mx6slevk/mx6slevk.c
index 33ae91c307..453f281418 100644
--- a/board/freescale/mx6slevk/mx6slevk.c
+++ b/board/freescale/mx6slevk/mx6slevk.c
@@ -145,7 +145,7 @@ int power_init_board(void)
 	u32 switch_num = 6;
 	u32 offset = PFUZE100_SW1CMODE;
 
-	ret = pmic_get("pfuze100", &dev);
+	ret = pmic_get("pfuze100 at 08", &dev);
 	if (ret == -ENODEV)
 		return 0;
 
-- 
2.17.1

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

* [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case Fabio Estevam
  2019-12-20 17:59 ` [PATCH 2/3] mx6sllevk: " Fabio Estevam
  2019-12-20 17:59 ` [PATCH 3/3] mx6slevk: " Fabio Estevam
@ 2019-12-23  6:47 ` Peng Fan
  2020-01-04 11:03 ` sbabic at denx.de
  3 siblings, 0 replies; 9+ messages in thread
From: Peng Fan @ 2019-12-23  6:47 UTC (permalink / raw)
  To: u-boot

> Subject: [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM
> case
> 
> When pmic_get() is used with DM the first parameter must be the complete
> node name plus the unit address, so fix it accordingly.
> 
> Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> ---
>  board/freescale/mx7dsabresd/mx7dsabresd.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c
> b/board/freescale/mx7dsabresd/mx7dsabresd.c
> index f1120d67e3..05cf8c8c7c 100644
> --- a/board/freescale/mx7dsabresd/mx7dsabresd.c
> +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c
> @@ -326,7 +326,7 @@ int power_init_board(void)
>  	struct udevice *dev;
>  	int ret, dev_id, rev_id;
> 
> -	ret = pmic_get("pfuze3000", &dev);
> +	ret = pmic_get("pfuze3000 at 08", &dev);
>  	if (ret == -ENODEV)
>  		return 0;
>  	if (ret != 0)
> --
> 2.17.1

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

* [PATCH 2/3] mx6sllevk: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 ` [PATCH 2/3] mx6sllevk: " Fabio Estevam
@ 2019-12-23  6:47   ` Peng Fan
  2020-01-04 11:00   ` sbabic at denx.de
  1 sibling, 0 replies; 9+ messages in thread
From: Peng Fan @ 2019-12-23  6:47 UTC (permalink / raw)
  To: u-boot

> Subject: [PATCH 2/3] mx6sllevk: Fix the pmic_get() parameter in the DM case
> 
> When pmic_get() is used with DM the first parameter must be the complete
> node name plus the unit address, so fix it accordingly.
> 
> Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> ---
>  board/freescale/mx6sllevk/mx6sllevk.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/freescale/mx6sllevk/mx6sllevk.c
> b/board/freescale/mx6sllevk/mx6sllevk.c
> index 227d178e07..0a36b46e9e 100644
> --- a/board/freescale/mx6sllevk/mx6sllevk.c
> +++ b/board/freescale/mx6sllevk/mx6sllevk.c
> @@ -57,7 +57,7 @@ int power_init_board(void)
>  	u32 switch_num = 6;
>  	u32 offset = PFUZE100_SW1CMODE;
> 
> -	ret = pmic_get("pfuze100", &dev);
> +	ret = pmic_get("pfuze100 at 08", &dev);
>  	if (ret == -ENODEV)
>  		return 0;
> 
> --
> 2.17.1

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

* [PATCH 3/3] mx6slevk: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 ` [PATCH 3/3] mx6slevk: " Fabio Estevam
@ 2019-12-23  6:47   ` Peng Fan
  2020-01-04 11:03   ` sbabic at denx.de
  1 sibling, 0 replies; 9+ messages in thread
From: Peng Fan @ 2019-12-23  6:47 UTC (permalink / raw)
  To: u-boot

> Subject: [PATCH 3/3] mx6slevk: Fix the pmic_get() parameter in the DM case
> 
> When pmic_get() is used with DM the first parameter must be the complete
> node name plus the unit address, so fix it accordingly.
> 
> Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> ---
>  board/freescale/mx6slevk/mx6slevk.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/freescale/mx6slevk/mx6slevk.c
> b/board/freescale/mx6slevk/mx6slevk.c
> index 33ae91c307..453f281418 100644
> --- a/board/freescale/mx6slevk/mx6slevk.c
> +++ b/board/freescale/mx6slevk/mx6slevk.c
> @@ -145,7 +145,7 @@ int power_init_board(void)
>  	u32 switch_num = 6;
>  	u32 offset = PFUZE100_SW1CMODE;
> 
> -	ret = pmic_get("pfuze100", &dev);
> +	ret = pmic_get("pfuze100 at 08", &dev);
>  	if (ret == -ENODEV)
>  		return 0;
> 
> --
> 2.17.1

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

* [PATCH 2/3] mx6sllevk: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 ` [PATCH 2/3] mx6sllevk: " Fabio Estevam
  2019-12-23  6:47   ` Peng Fan
@ 2020-01-04 11:00   ` sbabic at denx.de
  1 sibling, 0 replies; 9+ messages in thread
From: sbabic at denx.de @ 2020-01-04 11:00 UTC (permalink / raw)
  To: u-boot

> When pmic_get() is used with DM the first parameter must be
> the complete node name plus the unit address, so fix it
> accordingly.
> Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> Reviewed-by: Peng Fan <peng.fan@nxp.com>
Applied to u-boot-imx, -next, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

* [PATCH 3/3] mx6slevk: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 ` [PATCH 3/3] mx6slevk: " Fabio Estevam
  2019-12-23  6:47   ` Peng Fan
@ 2020-01-04 11:03   ` sbabic at denx.de
  1 sibling, 0 replies; 9+ messages in thread
From: sbabic at denx.de @ 2020-01-04 11:03 UTC (permalink / raw)
  To: u-boot

> When pmic_get() is used with DM the first parameter must be
> the complete node name plus the unit address, so fix it
> accordingly.
> Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> Reviewed-by: Peng Fan <peng.fan@nxp.com>
Applied to u-boot-imx, -next, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

* [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case
  2019-12-20 17:59 [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case Fabio Estevam
                   ` (2 preceding siblings ...)
  2019-12-23  6:47 ` [PATCH 1/3] mx7dsabresd: " Peng Fan
@ 2020-01-04 11:03 ` sbabic at denx.de
  3 siblings, 0 replies; 9+ messages in thread
From: sbabic at denx.de @ 2020-01-04 11:03 UTC (permalink / raw)
  To: u-boot

> When pmic_get() is used with DM the first parameter must be
> the complete node name plus the unit address, so fix it
> accordingly.
> Reported-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> Reviewed-by: Peng Fan <peng.fan@nxp.com>
Applied to u-boot-imx, -next, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

end of thread, other threads:[~2020-01-04 11:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-20 17:59 [PATCH 1/3] mx7dsabresd: Fix the pmic_get() parameter in the DM case Fabio Estevam
2019-12-20 17:59 ` [PATCH 2/3] mx6sllevk: " Fabio Estevam
2019-12-23  6:47   ` Peng Fan
2020-01-04 11:00   ` sbabic at denx.de
2019-12-20 17:59 ` [PATCH 3/3] mx6slevk: " Fabio Estevam
2019-12-23  6:47   ` Peng Fan
2020-01-04 11:03   ` sbabic at denx.de
2019-12-23  6:47 ` [PATCH 1/3] mx7dsabresd: " Peng Fan
2020-01-04 11:03 ` sbabic at denx.de

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.