diff options
Diffstat (limited to 'drivers/video/simple_panel.c')
-rw-r--r-- | drivers/video/simple_panel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/simple_panel.c b/drivers/video/simple_panel.c index 81fcafb9f5..6a6473eb0e 100644 --- a/drivers/video/simple_panel.c +++ b/drivers/video/simple_panel.c @@ -76,7 +76,7 @@ static int simple_panel_of_to_plat(struct udevice *dev) struct simple_panel_priv *priv = dev_get_priv(dev); int ret; - if (IS_ENABLED(CONFIG_DM_REGULATOR)) { + if (CONFIG_IS_ENABLED(DM_REGULATOR)) { ret = uclass_get_device_by_phandle(UCLASS_REGULATOR, dev, "power-supply", &priv->reg); if (ret) { @@ -114,7 +114,7 @@ static int simple_panel_probe(struct udevice *dev) const u32 dsi_data = dev_get_driver_data(dev); int ret; - if (IS_ENABLED(CONFIG_DM_REGULATOR) && priv->reg) { + if (CONFIG_IS_ENABLED(DM_REGULATOR) && priv->reg) { debug("%s: Enable regulator '%s'\n", __func__, priv->reg->name); ret = regulator_set_enable(priv->reg, true); if (ret) |