]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
clk: axi-clkgen: use devm_platform_ioremap_resource() short-hand
authorAlexandru Ardelean <alexandru.ardelean@analog.com>
Mon, 1 Feb 2021 15:12:45 +0000 (17:12 +0200)
committerStephen Boyd <sboyd@kernel.org>
Tue, 9 Feb 2021 02:13:13 +0000 (18:13 -0800)
No major functional change. Noticed while checking the driver code that
this could be used.
Saves two lines.

Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
Link: https://lore.kernel.org/r/20210201151245.21845-5-alexandru.ardelean@analog.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/clk-axi-clkgen.c

index 9d1b0fc56c73e5ec68b270b1af697f45198aede7..ac6ff736ac8f6cd598d33554d4c1c3943bdbd2d5 100644 (file)
@@ -510,7 +510,6 @@ static int axi_clkgen_probe(struct platform_device *pdev)
        struct clk_init_data init;
        const char *parent_names[2];
        const char *clk_name;
-       struct resource *mem;
        unsigned int i;
        int ret;
 
@@ -522,8 +521,7 @@ static int axi_clkgen_probe(struct platform_device *pdev)
        if (!axi_clkgen)
                return -ENOMEM;
 
-       mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       axi_clkgen->base = devm_ioremap_resource(&pdev->dev, mem);
+       axi_clkgen->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(axi_clkgen->base))
                return PTR_ERR(axi_clkgen->base);