]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
pinctrl: k210: Make (p)clk local to k210_fpioa_probe()
authorGeert Uytterhoeven <geert+renesas@glider.be>
Wed, 4 Sep 2024 09:08:53 +0000 (11:08 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 1 Oct 2024 12:03:40 +0000 (14:03 +0200)
There were never any users of k210_fpioa_data.clk and
k210_fpioa_data.pclk outside k210_fpioa_probe().

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Link: https://lore.kernel.org/77f543046d4d5c19206f829ddcf8e093d3e3f6da.1725440917.git.geert+renesas@glider.be
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-k210.c

index 0f6b55fec31de700711d909dd4d01bde6665e6d0..caf20215aaba5e9bfac6d3af34804f14c1e0dc69 100644 (file)
@@ -96,8 +96,6 @@ struct k210_fpioa_data {
        struct k210_fpioa __iomem *fpioa;
        struct regmap *sysctl_map;
        u32 power_offset;
-       struct clk *clk;
-       struct clk *pclk;
 };
 
 #define K210_PIN_NAME(i)       ("IO_" #i)
@@ -925,6 +923,7 @@ static int k210_fpioa_probe(struct platform_device *pdev)
        struct device *dev = &pdev->dev;
        struct device_node *np = dev->of_node;
        struct k210_fpioa_data *pdata;
+       struct clk *clk, *pclk;
 
        dev_info(dev, "K210 FPIOA pin controller\n");
 
@@ -939,13 +938,13 @@ static int k210_fpioa_probe(struct platform_device *pdev)
        if (IS_ERR(pdata->fpioa))
                return PTR_ERR(pdata->fpioa);
 
-       pdata->clk = devm_clk_get_enabled(dev, "ref");
-       if (IS_ERR(pdata->clk))
-               return PTR_ERR(pdata->clk);
+       clk = devm_clk_get_enabled(dev, "ref");
+       if (IS_ERR(clk))
+               return PTR_ERR(clk);
 
-       pdata->pclk = devm_clk_get_optional_enabled(dev, "pclk");
-       if (IS_ERR(pdata->pclk))
-               return PTR_ERR(pdata->pclk);
+       pclk = devm_clk_get_optional_enabled(dev, "pclk");
+       if (IS_ERR(pclk))
+               return PTR_ERR(pclk);
 
        pdata->sysctl_map =
                syscon_regmap_lookup_by_phandle_args(np,