diff options
author | Cai Huoqing <caihuoqing@baidu.com> | 2021-09-07 16:53:04 +0800 |
---|---|---|
committer | Maxime Ripard <maxime@cerno.tech> | 2021-09-13 09:03:23 +0200 |
commit | ac57ffb04b53c19d57ce77146f1b45fc440e9bb8 (patch) | |
tree | 18e87ebc9381c683f0d4312676c05c067bbbaca0 /drivers | |
parent | 1f38b45b115d5f47154d615fe7206783f6a788f4 (diff) | |
download | linux-ac57ffb04b53c19d57ce77146f1b45fc440e9bb8.tar.gz |
clk: sunxi: sun6i-apb0-gates: 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>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20210907085305.5019-1-caihuoqing@baidu.com
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/sunxi/clk-sun6i-apb0-gates.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clk/sunxi/clk-sun6i-apb0-gates.c b/drivers/clk/sunxi/clk-sun6i-apb0-gates.c index 4c75b0770c74..e4cf1180b088 100644 --- a/drivers/clk/sunxi/clk-sun6i-apb0-gates.c +++ b/drivers/clk/sunxi/clk-sun6i-apb0-gates.c @@ -40,7 +40,6 @@ static int sun6i_a31_apb0_gates_clk_probe(struct platform_device *pdev) const struct gates_data *data; const char *clk_parent; const char *clk_name; - struct resource *r; void __iomem *reg; int ngates; int i; @@ -53,8 +52,7 @@ static int sun6i_a31_apb0_gates_clk_probe(struct platform_device *pdev) if (!data) return -ENODEV; - r = platform_get_resource(pdev, IORESOURCE_MEM, 0); - reg = devm_ioremap_resource(&pdev->dev, r); + reg = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(reg)) return PTR_ERR(reg); |