]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
gpio: stm32f7: Remove CONFIG_CLK flag.
authorPatrice Chotard <patrice.chotard@st.com>
Mon, 3 Dec 2018 09:52:53 +0000 (10:52 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 7 Dec 2018 13:13:48 +0000 (08:13 -0500)
As all STM32 SoCs supports CONFIG_CLK flag,
it becomes useless in this driver, remove it.

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
drivers/gpio/stm32f7_gpio.c

index 34cdafa1e402411f268d602ce8858abf9c0aa208..f160b4e68957fa36e3bfee629e8f086a30601828 100644 (file)
@@ -151,6 +151,7 @@ static int gpio_stm32_probe(struct udevice *dev)
        struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
        struct stm32_gpio_priv *priv = dev_get_priv(dev);
        struct ofnode_phandle_args args;
+       struct clk clk;
        fdt_addr_t addr;
        const char *name;
        int ret;
@@ -184,8 +185,6 @@ static int gpio_stm32_probe(struct udevice *dev)
                (u32 *)priv->regs, uc_priv->bank_name, uc_priv->gpio_count,
                priv->gpio_range);
 
-#ifdef CONFIG_CLK
-       struct clk clk;
        ret = clk_get_by_index(dev, 0, &clk);
        if (ret < 0)
                return ret;
@@ -197,7 +196,6 @@ static int gpio_stm32_probe(struct udevice *dev)
                return ret;
        }
        debug("clock enabled for device %s\n", dev->name);
-#endif
 
        return 0;
 }