Skip to content

Commit

Permalink
mmc: sdhci-st: simplify optional reset handling
Browse files Browse the repository at this point in the history
As of commit bb47523 ("reset: make optional functions really
optional"), the reset framework API calls use NULL pointers to describe
optional, non-present reset controls.

This allows to return errors from devm_reset_control_get_optional and to
call reset_control_(de)assert unconditionally.

Signed-off-by: Philipp Zabel <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
  • Loading branch information
pH5 authored and storulf committed Mar 30, 2021
1 parent 8c87dab commit 95211a9
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions drivers/mmc/host/sdhci-st.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,10 @@ static int sdhci_st_probe(struct platform_device *pdev)
if (IS_ERR(icnclk))
icnclk = NULL;

rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL);
rstc = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
if (IS_ERR(rstc))
rstc = NULL;
else
reset_control_deassert(rstc);
return PTR_ERR(rstc);
reset_control_deassert(rstc);

host = sdhci_pltfm_init(pdev, &sdhci_st_pdata, sizeof(*pdata));
if (IS_ERR(host)) {
Expand Down Expand Up @@ -432,8 +431,7 @@ static int sdhci_st_probe(struct platform_device *pdev)
err_of:
sdhci_pltfm_free(pdev);
err_pltfm_init:
if (rstc)
reset_control_assert(rstc);
reset_control_assert(rstc);

return ret;
}
Expand All @@ -450,8 +448,7 @@ static int sdhci_st_remove(struct platform_device *pdev)

clk_disable_unprepare(pdata->icnclk);

if (rstc)
reset_control_assert(rstc);
reset_control_assert(rstc);

return ret;
}
Expand All @@ -471,8 +468,7 @@ static int sdhci_st_suspend(struct device *dev)
if (ret)
goto out;

if (pdata->rstc)
reset_control_assert(pdata->rstc);
reset_control_assert(pdata->rstc);

clk_disable_unprepare(pdata->icnclk);
clk_disable_unprepare(pltfm_host->clk);
Expand All @@ -498,8 +494,7 @@ static int sdhci_st_resume(struct device *dev)
return ret;
}

if (pdata->rstc)
reset_control_deassert(pdata->rstc);
reset_control_deassert(pdata->rstc);

st_mmcss_cconfig(np, host);

Expand Down

0 comments on commit 95211a9

Please sign in to comment.