[PATCH v3 10/11] arm: u8500: Give Golden panel regulators unique names
Linus Walleij <[email protected]>
| Newsgroups | org.u-boot-project.lists.u-boot |
|---|---|
| Message-ID | <[email protected]> |
The Golden device tree gives both fixed panel supplies the same regulator-name. U-Boot requires regulator names to be unique and aborts driver-model initialization when binding the second supply. Add a U-Boot overlay assigning distinct names to the 1.8 V and 3.0 V supplies. Include the common U8500 overlay since a board-specific overlay takes precedence over it. Link: https://lore.kernel.org/linux-arm-kernel/[email protected]/ Signed-off-by: Linus Walleij <[email protected]> --- arch/arm/dts/ste-ux500-samsung-golden-u-boot.dtsi | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/arm/dts/ste-ux500-samsung-golden-u-boot.dtsi b/arch/arm/dts/ste-ux500-samsung-golden-u-boot.dtsi new file mode 100644 index 000000000000..647b3f73c413 --- /dev/null +++ b/arch/arm/dts/ste-ux500-samsung-golden-u-boot.dtsi @@ -0,0 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "u8500-u-boot.dtsi" + +&panel_reg_1v8 { + regulator-name = "panel-fixed-supply-1v8"; +}; + +&panel_reg_3v0 { + regulator-name = "panel-fixed-supply-3v0"; +}; -- 2.55.0