board: stm32mp1: remove test on CONFIG_DM_REGULATOR

The tests on CONFIG_DM_REGULATOR, added to avoid compilation issues, can
now be removed, they are no more needed since the commit 16cc5ad0b4
("power: regulator: add dummy helper").

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
This commit is contained in:
Patrick Delaunay 2022-06-20 12:36:10 +02:00
parent 50b2184257
commit 0a1a755636

View file

@ -494,7 +494,7 @@ static void sysconf_init(void)
ret = uclass_get_device_by_driver(UCLASS_PMIC, ret = uclass_get_device_by_driver(UCLASS_PMIC,
DM_DRIVER_GET(stm32mp_pwr_pmic), DM_DRIVER_GET(stm32mp_pwr_pmic),
&pwr_dev); &pwr_dev);
if (!ret && IS_ENABLED(CONFIG_DM_REGULATOR)) { if (!ret) {
ret = uclass_get_device_by_driver(UCLASS_MISC, ret = uclass_get_device_by_driver(UCLASS_MISC,
DM_DRIVER_GET(stm32mp_bsec), DM_DRIVER_GET(stm32mp_bsec),
&dev); &dev);
@ -555,9 +555,6 @@ static int board_stm32mp15x_dk2_init(void)
struct gpio_desc hdmi, audio; struct gpio_desc hdmi, audio;
int ret = 0; int ret = 0;
if (!IS_ENABLED(CONFIG_DM_REGULATOR))
return -ENODEV;
/* Fix to make I2C1 usable on DK2 for touchscreen usage in kernel */ /* Fix to make I2C1 usable on DK2 for touchscreen usage in kernel */
node = ofnode_path("/soc/i2c@40012000/hdmi-transmitter@39"); node = ofnode_path("/soc/i2c@40012000/hdmi-transmitter@39");
if (!ofnode_valid(node)) { if (!ofnode_valid(node)) {
@ -658,8 +655,7 @@ int board_init(void)
if (board_is_stm32mp15x_dk2()) if (board_is_stm32mp15x_dk2())
board_stm32mp15x_dk2_init(); board_stm32mp15x_dk2_init();
if (IS_ENABLED(CONFIG_DM_REGULATOR)) regulators_enable_boot_on(_DEBUG);
regulators_enable_boot_on(_DEBUG);
/* /*
* sysconf initialisation done only when U-Boot is running in secure * sysconf initialisation done only when U-Boot is running in secure