diff options
author | Cai Huoqing <caihuoqing@baidu.com> | 2021-09-07 10:51:36 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2022-01-06 01:43:41 +0100 |
commit | ee4abc4c5cf6a745be64a4f537c08040357827c3 (patch) | |
tree | 857b1be42f8086baff06aa4c7612d1b50eafc18a /drivers/clk/socfpga | |
parent | clk: socfpga: remove redundant assignment after a mask operation (diff) | |
download | linux-ee4abc4c5cf6a745be64a4f537c08040357827c3.tar.xz linux-ee4abc4c5cf6a745be64a4f537c08040357827c3.zip |
clk: socfpga: agilex: Make use of the helper function devm_platform_ioremap_resource()
Use the devm_platform_ioremap_resource() helper instead of
calling platform_get_resource() and devm_ioremap_resource()
separately
Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
Link: https://lore.kernel.org/r/20210907085137.4407-1-caihuoqing@baidu.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/socfpga')
-rw-r--r-- | drivers/clk/socfpga/clk-agilex.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clk/socfpga/clk-agilex.c b/drivers/clk/socfpga/clk-agilex.c index bf8cd928c228..74d21bd82710 100644 --- a/drivers/clk/socfpga/clk-agilex.c +++ b/drivers/clk/socfpga/clk-agilex.c @@ -500,12 +500,10 @@ static int n5x_clkmgr_init(struct platform_device *pdev) struct device_node *np = pdev->dev.of_node; struct device *dev = &pdev->dev; struct stratix10_clock_data *clk_data; - struct resource *res; void __iomem *base; int i, num_clks; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - base = devm_ioremap_resource(dev, res); + base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(base)) return PTR_ERR(base); |