mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 17:04:50 -04:00
ARM: dts: imx6qdl-dhcom-pdk2: Fill in missing panel power-supply
Add missing panel power-supply property to DT to fix the following warning. The power supply on this device is very simple chain of regulators from the main 24V input, describe those. " arch/arm/boot/dts/nxp/imx/imx6q-dhcom-pdk2.dtb: panel: 'power-supply' is a required property " Signed-off-by: Marek Vasut <marex@denx.de> Reviewed-by: Christoph Niedermaier <cniedermaier@dh-electronics.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
@@ -143,6 +143,7 @@ led-8 {
|
||||
panel {
|
||||
backlight = <&display_bl>;
|
||||
compatible = "edt,etm0700g0edh6";
|
||||
power-supply = <®_panel_3v3>;
|
||||
|
||||
port {
|
||||
lcd_panel_in: endpoint {
|
||||
@@ -151,6 +152,25 @@ lcd_panel_in: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
/* Filtered supply voltage */
|
||||
reg_pdk2_24v: regulator-pdk2-24v {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-always-on;
|
||||
regulator-max-microvolt = <24000000>;
|
||||
regulator-min-microvolt = <24000000>;
|
||||
regulator-name = "24V_PDK2";
|
||||
};
|
||||
|
||||
/* 560-200 U1 */
|
||||
reg_panel_3v3: regulator-panel-3v3 {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-always-on;
|
||||
regulator-min-microvolt = <3300000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
regulator-name = "3V3_PANEL";
|
||||
vin-supply = <®_pdk2_24v>;
|
||||
};
|
||||
|
||||
sound {
|
||||
audio-codec = <&sgtl5000>;
|
||||
audio-routing =
|
||||
|
||||
Reference in New Issue
Block a user