On Mon 14 Oct 2019 at 16:43, YueHaibing <[email protected]> wrote:
> Use devm_platform_ioremap_resource() to simplify the code a bit. > This is detected by coccinelle. > > Signed-off-by: YueHaibing <[email protected]> > --- > drivers/clk/meson/axg-audio.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/clk/meson/axg-audio.c b/drivers/clk/meson/axg-audio.c > index 18b23cd..d7d7cff 100644 > --- a/drivers/clk/meson/axg-audio.c > +++ b/drivers/clk/meson/axg-audio.c > @@ -1016,7 +1016,6 @@ static int axg_audio_clkc_probe(struct platform_device > *pdev) > const struct audioclk_data *data; > struct axg_audio_reset_data *rst; > struct regmap *map; > - struct resource *res; > void __iomem *regs; > struct clk_hw *hw; > int ret, i; > @@ -1025,8 +1024,7 @@ static int axg_audio_clkc_probe(struct platform_device > *pdev) > if (!data) > return -EINVAL; > > - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > - regs = devm_ioremap_resource(dev, res); > + regs = devm_platform_ioremap_resource(pdev, 0); > if (IS_ERR(regs)) > return PTR_ERR(regs); Applied, Thx

