2021-09-21 02:47:55

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [PATCH] ARM: dts: imx6dl-b1x5v2: drop unsupported vcc-supply for MPL3115A2

The MPL3115A2 I2C pressure sensor driver does not take a VCC regulator.
The bindings are so far trivial, but the datasheet does not have a VCC
pin.

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
arch/arm/boot/dts/imx6dl-b1x5v2.dtsi | 1 -
1 file changed, 1 deletion(-)

diff --git a/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi b/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
index a326a331508e..f028b6a191df 100644
--- a/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
+++ b/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
@@ -47,7 +47,6 @@ &i2c5 {
mpl3115a2: pressure-sensor@60 {
compatible = "fsl,mpl3115";
reg = <0x60>;
- vcc-supply = <&reg_3v3_acm>;

/*
* The MPL3115 interrupts are connected to pin 22 and 23
--
2.30.2


2021-10-02 15:27:06

by Sebastian Reichel

[permalink] [raw]
Subject: Re: [PATCH] ARM: dts: imx6dl-b1x5v2: drop unsupported vcc-supply for MPL3115A2

Hi,

On Mon, Sep 20, 2021 at 08:22:27PM +0200, Krzysztof Kozlowski wrote:
> The MPL3115A2 I2C pressure sensor driver does not take a VCC regulator.
> The bindings are so far trivial, but the datasheet does not have a VCC
> pin.
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---

Reviewed-by: Sebastian Reichel <[email protected]>

FWIW &reg_3v3_acm is connected to VDD obviously, but it's an
always-on regulator without any means to control it, so there
is no need to describe it.

-- Sebastian

> arch/arm/boot/dts/imx6dl-b1x5v2.dtsi | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi b/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
> index a326a331508e..f028b6a191df 100644
> --- a/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
> +++ b/arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
> @@ -47,7 +47,6 @@ &i2c5 {
> mpl3115a2: pressure-sensor@60 {
> compatible = "fsl,mpl3115";
> reg = <0x60>;
> - vcc-supply = <&reg_3v3_acm>;
>
> /*
> * The MPL3115 interrupts are connected to pin 22 and 23
> --
> 2.30.2
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> [email protected]
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel


Attachments:
(No filename) (1.29 kB)
signature.asc (849.00 B)
Download all attachments

2021-10-05 05:18:28

by Shawn Guo

[permalink] [raw]
Subject: Re: [PATCH] ARM: dts: imx6dl-b1x5v2: drop unsupported vcc-supply for MPL3115A2

On Mon, Sep 20, 2021 at 08:22:27PM +0200, Krzysztof Kozlowski wrote:
> The MPL3115A2 I2C pressure sensor driver does not take a VCC regulator.
> The bindings are so far trivial, but the datasheet does not have a VCC
> pin.
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>

Applied, thanks!