Message ID | 20201221095001.595366-4-timon.baetz@protonmail.com |
---|---|
State | Superseded |
Headers | show |
Series | [v2,1/6] extcon: max8997: Add CHGINS and CHGRM interrupt handling | expand |
On Mon, Dec 21, 2020 at 09:53:28AM +0000, Timon Baetz wrote: > muic node is only used for extcon consumers. > charger node is used to specify muic and regulator. > > Signed-off-by: Timon Baetz <timon.baetz@protonmail.com> > --- > arch/arm/boot/dts/exynos4210-i9100.dts | 10 ++++++++++ > 1 file changed, 10 insertions(+) Arrange your patches within the patchset in a way preserving bisectability. If 3/7 is applied, the charger will be off because kernel disables unused regulators. Best regards, Krzysztof
diff --git a/arch/arm/boot/dts/exynos4210-i9100.dts b/arch/arm/boot/dts/exynos4210-i9100.dts index 56ae534402bb..586d801af0b5 100644 --- a/arch/arm/boot/dts/exynos4210-i9100.dts +++ b/arch/arm/boot/dts/exynos4210-i9100.dts @@ -583,6 +583,16 @@ EN32KHZ_CP { regulator-always-on; }; }; + + muic: max8997-muic { + compatible = "maxim,max8997-muic"; + }; + + charger { + compatible = "maxim,max8997-battery"; + charger-supply = <&charger_reg>; + extcon = <&muic>; + }; }; };
muic node is only used for extcon consumers. charger node is used to specify muic and regulator. Signed-off-by: Timon Baetz <timon.baetz@protonmail.com> --- arch/arm/boot/dts/exynos4210-i9100.dts | 10 ++++++++++ 1 file changed, 10 insertions(+)