mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
mtd: rawnand: sunxi: Use helper function devm_clk_get_enabled()
Since commit 7ef9651e97
("clk: Provide new devm_clk helpers for prepared
and enabled clocks"), devm_clk_get() and clk_prepare_enable() can now be
replaced by devm_clk_get_enabled() when driver enables (and possibly
prepares) the clocks for the whole lifetime of the device. Moreover, it is
no longer necessary to unprepare and disable the clocks explicitly, so drop
the label "out_mod_clk_unprepare" and "out_ahb_clk_unprepare".
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Li Zetao <lizetao1@huawei.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20230821031737.1973183-10-lizetao1@huawei.com
This commit is contained in:
parent
7ec53e2beb
commit
a95da27212
@ -2095,37 +2095,26 @@ static int sunxi_nfc_probe(struct platform_device *pdev)
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
|
||||
nfc->ahb_clk = devm_clk_get(dev, "ahb");
|
||||
nfc->ahb_clk = devm_clk_get_enabled(dev, "ahb");
|
||||
if (IS_ERR(nfc->ahb_clk)) {
|
||||
dev_err(dev, "failed to retrieve ahb clk\n");
|
||||
return PTR_ERR(nfc->ahb_clk);
|
||||
}
|
||||
|
||||
ret = clk_prepare_enable(nfc->ahb_clk);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
nfc->mod_clk = devm_clk_get(dev, "mod");
|
||||
nfc->mod_clk = devm_clk_get_enabled(dev, "mod");
|
||||
if (IS_ERR(nfc->mod_clk)) {
|
||||
dev_err(dev, "failed to retrieve mod clk\n");
|
||||
ret = PTR_ERR(nfc->mod_clk);
|
||||
goto out_ahb_clk_unprepare;
|
||||
return PTR_ERR(nfc->mod_clk);
|
||||
}
|
||||
|
||||
ret = clk_prepare_enable(nfc->mod_clk);
|
||||
if (ret)
|
||||
goto out_ahb_clk_unprepare;
|
||||
|
||||
nfc->reset = devm_reset_control_get_optional_exclusive(dev, "ahb");
|
||||
if (IS_ERR(nfc->reset)) {
|
||||
ret = PTR_ERR(nfc->reset);
|
||||
goto out_mod_clk_unprepare;
|
||||
}
|
||||
if (IS_ERR(nfc->reset))
|
||||
return PTR_ERR(nfc->reset);
|
||||
|
||||
ret = reset_control_deassert(nfc->reset);
|
||||
if (ret) {
|
||||
dev_err(dev, "reset err %d\n", ret);
|
||||
goto out_mod_clk_unprepare;
|
||||
return ret;
|
||||
}
|
||||
|
||||
nfc->caps = of_device_get_match_data(&pdev->dev);
|
||||
@ -2164,10 +2153,6 @@ out_release_dmac:
|
||||
dma_release_channel(nfc->dmac);
|
||||
out_ahb_reset_reassert:
|
||||
reset_control_assert(nfc->reset);
|
||||
out_mod_clk_unprepare:
|
||||
clk_disable_unprepare(nfc->mod_clk);
|
||||
out_ahb_clk_unprepare:
|
||||
clk_disable_unprepare(nfc->ahb_clk);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -2182,8 +2167,6 @@ static void sunxi_nfc_remove(struct platform_device *pdev)
|
||||
|
||||
if (nfc->dmac)
|
||||
dma_release_channel(nfc->dmac);
|
||||
clk_disable_unprepare(nfc->mod_clk);
|
||||
clk_disable_unprepare(nfc->ahb_clk);
|
||||
}
|
||||
|
||||
static const struct sunxi_nfc_caps sunxi_nfc_a10_caps = {
|
||||
|
Loading…
Reference in New Issue
Block a user