From: Caleb Connolly Date: Wed, 3 Apr 2024 12:07:47 +0000 (+0200) Subject: mach-snapdragon: call regulators_enable_boot_on() X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=1751d3c4bab0ec258f6996eb1b30f779a79213f7;p=u-boot.git mach-snapdragon: call regulators_enable_boot_on() Make sure we power on any boot-on or always-on regulators. These are used for peripherals like USB on some platforms. Reviewed-by: Sumit Garg Reviewed-by: Neil Armstrong Signed-off-by: Caleb Connolly --- diff --git a/arch/arm/mach-snapdragon/board.c b/arch/arm/mach-snapdragon/board.c index 65e4c61e86..3d5994c878 100644 --- a/arch/arm/mach-snapdragon/board.c +++ b/arch/arm/mach-snapdragon/board.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include @@ -161,6 +162,7 @@ void __weak qcom_board_init(void) int board_init(void) { + regulators_enable_boot_on(false); show_psci_version(); qcom_of_fixup_nodes(); qcom_board_init();