All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: aspeed: Everest PSU #3 address change
@ 2021-06-10 20:29 Brandon Wyman
  2021-06-21 19:09 ` Eddie James
  0 siblings, 1 reply; 3+ messages in thread
From: Brandon Wyman @ 2021-06-10 20:29 UTC (permalink / raw)
  To: Joel Stanley, openbmc, linux-aspeed; +Cc: B. J. Wyman

From: "B. J. Wyman" <bjwyman@gmail.com>

The third power supply had an I2C address conflict with another device
in the system. The device will have the address changed from 6Ah to 6Dh.

Signed-off-by: B. J. Wyman <bjwyman@gmail.com>
---
 arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts b/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
index 3295c8c7c05c..480cb6604c7d 100644
--- a/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
@@ -536,9 +536,9 @@ power-supply@69 {
 		reg = <0x69>;
 	};
 
-	power-supply@6a {
+	power-supply@6d {
 		compatible = "ibm,cffps";
-		reg = <0x6a>;
+		reg = <0x6d>;
 	};
 
 	power-supply@6b {
-- 
2.25.1


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

* Re: [PATCH] ARM: dts: aspeed: Everest PSU #3 address change
  2021-06-10 20:29 [PATCH] ARM: dts: aspeed: Everest PSU #3 address change Brandon Wyman
@ 2021-06-21 19:09 ` Eddie James
  2021-06-23  1:28   ` Joel Stanley
  0 siblings, 1 reply; 3+ messages in thread
From: Eddie James @ 2021-06-21 19:09 UTC (permalink / raw)
  To: Brandon Wyman, Joel Stanley, openbmc, linux-aspeed

On Thu, 2021-06-10 at 20:29 +0000, Brandon Wyman wrote:
> From: "B. J. Wyman" <bjwyman@gmail.com>
> 
> The third power supply had an I2C address conflict with another
> device
> in the system. The device will have the address changed from 6Ah to
> 6Dh.

Thanks Brandon.

Reviewed-by: Eddie James <eajames@linux.ibm.com>

> 
> Signed-off-by: B. J. Wyman <bjwyman@gmail.com>
> ---
>  arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> b/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> index 3295c8c7c05c..480cb6604c7d 100644
> --- a/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> +++ b/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> @@ -536,9 +536,9 @@ power-supply@69 {
>  		reg = <0x69>;
>  	};
>  
> -	power-supply@6a {
> +	power-supply@6d {
>  		compatible = "ibm,cffps";
> -		reg = <0x6a>;
> +		reg = <0x6d>;
>  	};
>  
>  	power-supply@6b {


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

* Re: [PATCH] ARM: dts: aspeed: Everest PSU #3 address change
  2021-06-21 19:09 ` Eddie James
@ 2021-06-23  1:28   ` Joel Stanley
  0 siblings, 0 replies; 3+ messages in thread
From: Joel Stanley @ 2021-06-23  1:28 UTC (permalink / raw)
  To: Eddie James; +Cc: Brandon Wyman, OpenBMC Maillist, linux-aspeed

On Mon, 21 Jun 2021 at 19:09, Eddie James <eajames@linux.ibm.com> wrote:
>
> On Thu, 2021-06-10 at 20:29 +0000, Brandon Wyman wrote:
> > From: "B. J. Wyman" <bjwyman@gmail.com>
> >
> > The third power supply had an I2C address conflict with another
> > device
> > in the system. The device will have the address changed from 6Ah to
> > 6Dh.
>
> Thanks Brandon.
>
> Reviewed-by: Eddie James <eajames@linux.ibm.com>

I've applied this to dev-5.10.

I'll try to remember to get the change upstream too.

>
> >
> > Signed-off-by: B. J. Wyman <bjwyman@gmail.com>
> > ---
> >  arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> > b/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> > index 3295c8c7c05c..480cb6604c7d 100644
> > --- a/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> > +++ b/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts
> > @@ -536,9 +536,9 @@ power-supply@69 {
> >               reg = <0x69>;
> >       };
> >
> > -     power-supply@6a {
> > +     power-supply@6d {
> >               compatible = "ibm,cffps";
> > -             reg = <0x6a>;
> > +             reg = <0x6d>;
> >       };
> >
> >       power-supply@6b {
>

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

end of thread, other threads:[~2021-06-23  1:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-10 20:29 [PATCH] ARM: dts: aspeed: Everest PSU #3 address change Brandon Wyman
2021-06-21 19:09 ` Eddie James
2021-06-23  1:28   ` Joel Stanley

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.