diff options
author | Fabio Estevam <festevam@denx.de> | 2024-10-25 04:08:54 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2024-11-02 06:26:05 +0300 |
commit | e6ae4506ab70a7c0ca23f0cca3dfeb9e198aa6b4 (patch) | |
tree | 4022b483036ac7c4fc8bc594b2d365221d1d34fa /arch/arm/boot/dts | |
parent | a72f3e951f67a8653aecd6ac580b460925479c8e (diff) | |
download | linux-e6ae4506ab70a7c0ca23f0cca3dfeb9e198aa6b4.tar.xz |
ARM: dts: imx6sx: Fix tempmon description
According to imx-thermal.yaml, the valid compatible string
for i.MX6SX is just: compatible = "fsl,imx6sx-tempmon".
Also pass #thermal-sensor-cells = <0> as it is a required property.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts')
-rw-r--r-- | arch/arm/boot/dts/nxp/imx/imx6sx.dtsi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/nxp/imx/imx6sx.dtsi b/arch/arm/boot/dts/nxp/imx/imx6sx.dtsi index a94bebaa858a..a9550f115f82 100644 --- a/arch/arm/boot/dts/nxp/imx/imx6sx.dtsi +++ b/arch/arm/boot/dts/nxp/imx/imx6sx.dtsi @@ -715,13 +715,14 @@ }; tempmon: tempmon { - compatible = "fsl,imx6sx-tempmon", "fsl,imx6q-tempmon"; + compatible = "fsl,imx6sx-tempmon"; interrupt-parent = <&gpc>; interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; fsl,tempmon = <&anatop>; nvmem-cells = <&tempmon_calib>, <&tempmon_temp_grade>; nvmem-cell-names = "calib", "temp_grade"; clocks = <&clks IMX6SX_CLK_PLL3_USB_OTG>; + #thermal-sensor-cells = <0>; }; }; |