On Wed, Jun 22, 2011 at 9:57 PM, Cousson, Benoit <b-cousson@xxxxxx> wrote: > On 6/22/2011 4:18 PM, Krishnamoorthy, Balaji T wrote: >> >> After runtime conversion to handle clk, >> iclk node is not used >> However fclk node is still used to get clock rate. >> >> Signed-off-by: Balaji T K<balajitk@xxxxxx> >> --- >> drivers/mmc/host/omap_hsmmc.c | 10 ---------- >> 1 files changed, 0 insertions(+), 10 deletions(-) >> >> diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c >> index 5b81d8b..afcca36 100644 >> --- a/drivers/mmc/host/omap_hsmmc.c >> +++ b/drivers/mmc/host/omap_hsmmc.c >> @@ -145,7 +145,6 @@ struct omap_hsmmc_host { >> struct mmc_command *cmd; >> struct mmc_data *data; >> struct clk *fclk; >> - struct clk *iclk; >> struct clk *dbclk; >> /* >> * vcc == configured supply >> @@ -1855,17 +1854,10 @@ static int __init omap_hsmmc_probe(struct >> platform_device *pdev) >> >> spin_lock_init(&host->irq_lock); >> >> - host->iclk = clk_get(&pdev->dev, "ick"); >> - if (IS_ERR(host->iclk)) { >> - ret = PTR_ERR(host->iclk); >> - host->iclk = NULL; >> - goto err1; >> - } >> host->fclk = clk_get(&pdev->dev, "fck"); >> if (IS_ERR(host->fclk)) { >> ret = PTR_ERR(host->fclk); >> host->fclk = NULL; >> - clk_put(host->iclk); >> goto err1; >> } >> >> @@ -2025,7 +2017,6 @@ err_irq: >> pm_runtime_mark_last_busy(host->dev); >> pm_runtime_put_autosuspend(host->dev); >> clk_put(host->fclk); > > Since you just have to use the clk_get_rate, you can remove as well all the > clock related functions for the fck node: clk_put / clk_enable... clk_enable is removed, but would prefer to keep clk_put for balancing clk_get > >> - clk_put(host->iclk); >> if (host->got_dbclk) { >> clk_disable(host->dbclk); >> clk_put(host->dbclk); >> @@ -2062,7 +2053,6 @@ static int omap_hsmmc_remove(struct platform_device >> *pdev) >> pm_runtime_forbid(host->dev); >> pm_runtime_disable(host->dev); >> clk_put(host->fclk); > > Here as well. > > Regards, > Benoit > -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html