Message ID | 20220708131404.1489347-2-sumit.garg@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | New boards support: db845c and qcs404-evb | expand |
On Fri, Jul 8, 2022 at 4:14 PM Sumit Garg <sumit.garg@linaro.org> wrote: > > Currently there is a mismatch among DT node overrides in starqltechn > board DTS file and the actual DT nodes in the sdm845.dtsi. So fix that > to align with DT nodes in sdm845.dtsi. > > Signed-off-by: Sumit Garg <sumit.garg@linaro.org> > --- > arch/arm/dts/starqltechn-uboot.dtsi | 18 ++++++++---------- > arch/arm/dts/starqltechn.dts | 2 +- > 2 files changed, 9 insertions(+), 11 deletions(-) > > diff --git a/arch/arm/dts/starqltechn-uboot.dtsi b/arch/arm/dts/starqltechn-uboot.dtsi > index b55cccfe14..8d5d09c3a5 100644 > --- a/arch/arm/dts/starqltechn-uboot.dtsi > +++ b/arch/arm/dts/starqltechn-uboot.dtsi > @@ -16,16 +16,14 @@ > serial@a84000 { > u-boot,dm-pre-reloc; > }; > - gcc { > - clock-controller@100000 { > - u-boot,dm-pre-reloc; > - }; > - gpio_north@3900000 { > - u-boot,dm-pre-reloc; > - }; > - pinctrl@3900000 { > - u-boot,dm-pre-reloc; > - }; > + clock-controller@100000 { > + u-boot,dm-pre-reloc; > + }; > + gpio_north@3900000 { > + u-boot,dm-pre-reloc; > + }; > + pinctrl_north@3900000 { > + u-boot,dm-pre-reloc; > }; > }; > }; > diff --git a/arch/arm/dts/starqltechn.dts b/arch/arm/dts/starqltechn.dts > index 0261388319..34a4f59cbd 100644 > --- a/arch/arm/dts/starqltechn.dts > +++ b/arch/arm/dts/starqltechn.dts > @@ -48,7 +48,7 @@ > status = "okay"; > }; > > - pinctrl@3900000 { > + pinctrl_north@3900000 { > muic_i2c: muic_i2c { > pins = "GPIO_33", "GPIO_34"; > drive-strength = <0x2>; > -- > 2.25.1 > Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
diff --git a/arch/arm/dts/starqltechn-uboot.dtsi b/arch/arm/dts/starqltechn-uboot.dtsi index b55cccfe14..8d5d09c3a5 100644 --- a/arch/arm/dts/starqltechn-uboot.dtsi +++ b/arch/arm/dts/starqltechn-uboot.dtsi @@ -16,16 +16,14 @@ serial@a84000 { u-boot,dm-pre-reloc; }; - gcc { - clock-controller@100000 { - u-boot,dm-pre-reloc; - }; - gpio_north@3900000 { - u-boot,dm-pre-reloc; - }; - pinctrl@3900000 { - u-boot,dm-pre-reloc; - }; + clock-controller@100000 { + u-boot,dm-pre-reloc; + }; + gpio_north@3900000 { + u-boot,dm-pre-reloc; + }; + pinctrl_north@3900000 { + u-boot,dm-pre-reloc; }; }; }; diff --git a/arch/arm/dts/starqltechn.dts b/arch/arm/dts/starqltechn.dts index 0261388319..34a4f59cbd 100644 --- a/arch/arm/dts/starqltechn.dts +++ b/arch/arm/dts/starqltechn.dts @@ -48,7 +48,7 @@ status = "okay"; }; - pinctrl@3900000 { + pinctrl_north@3900000 { muic_i2c: muic_i2c { pins = "GPIO_33", "GPIO_34"; drive-strength = <0x2>;
Currently there is a mismatch among DT node overrides in starqltechn board DTS file and the actual DT nodes in the sdm845.dtsi. So fix that to align with DT nodes in sdm845.dtsi. Signed-off-by: Sumit Garg <sumit.garg@linaro.org> --- arch/arm/dts/starqltechn-uboot.dtsi | 18 ++++++++---------- arch/arm/dts/starqltechn.dts | 2 +- 2 files changed, 9 insertions(+), 11 deletions(-)