Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: exynos: add panel supply in Tiny4412

The simple panel should have a supply. Provide a stub, as the board DTS
does not have a PMIC node, to silence warning:

exynos4412-tiny4412.dtb: panel: 'power-supply' is a required property

Link: https://lore.kernel.org/r/20230120155404.323386-7-krzysztof.kozlowski@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

+8
+8
arch/arm/boot/dts/exynos4412-tiny4412.dts
··· 79 79 80 80 panel { 81 81 compatible = "innolux,at070tn92"; 82 + power-supply = <&vddq_lcd>; 82 83 83 84 port { 84 85 panel_input: endpoint { 85 86 remote-endpoint = <&lcdc_output>; 86 87 }; 87 88 }; 89 + }; 90 + 91 + vddq_lcd: regulator-vddq-lcd { 92 + compatible = "regulator-fixed"; 93 + regulator-name = "vddq-lcd"; 94 + regulator-min-microvolt = <1800000>; 95 + regulator-max-microvolt = <1800000>; 88 96 }; 89 97 }; 90 98