diff mbox series

[2/2] reset: uniphier-glue: Use devm_add_action_or_reset()

Message ID 20211215093829.3209416-2-p.zabel@pengutronix.de (mailing list archive)
State New, archived
Headers show
Series [1/2] reset: uniphier-glue: Use reset_control_bulk API | expand

Commit Message

Philipp Zabel Dec. 15, 2021, 9:38 a.m. UTC
Slightly simplify uniphier_glue_reset_probe() and drop
uniphier_glue_reset_remove() by using devm_add_action_or_reset()
for clock and reset cleanup.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
 drivers/reset/reset-uniphier-glue.c | 50 ++++++++++++++---------------
 1 file changed, 24 insertions(+), 26 deletions(-)

Comments

Kunihiko Hayashi Dec. 16, 2021, 12:32 a.m. UTC | #1
On 2021/12/15 18:38, Philipp Zabel wrote:
> Slightly simplify uniphier_glue_reset_probe() and drop
> uniphier_glue_reset_remove() by using devm_add_action_or_reset()
> for clock and reset cleanup.

Reviewed-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>

Thank you,

> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
>   drivers/reset/reset-uniphier-glue.c | 50 ++++++++++++++---------------
>   1 file changed, 24 insertions(+), 26 deletions(-)
> 
> diff --git a/drivers/reset/reset-uniphier-glue.c
> b/drivers/reset/reset-uniphier-glue.c
> index 9b22c4a91d77..146fd5d45e99 100644
> --- a/drivers/reset/reset-uniphier-glue.c
> +++ b/drivers/reset/reset-uniphier-glue.c
> @@ -28,6 +28,20 @@ struct uniphier_glue_reset_priv {
>   	const struct uniphier_glue_reset_soc_data *data;
>   };
>   
> +static void uniphier_clk_disable(void *_priv)
> +{
> +	struct uniphier_glue_reset_priv *priv = _priv;
> +
> +	clk_bulk_disable_unprepare(priv->data->nclks, priv->clk);
> +}
> +
> +static void uniphier_rst_assert(void *_priv)
> +{
> +	struct uniphier_glue_reset_priv *priv = _priv;
> +
> +	reset_control_bulk_assert(priv->data->nrsts, priv->rst);
> +}
> +
>   static int uniphier_glue_reset_probe(struct platform_device *pdev)
>   {
>   	struct device *dev = &pdev->dev;
> @@ -68,9 +82,17 @@ static int uniphier_glue_reset_probe(struct
> platform_device *pdev)
>   	if (ret)
>   		return ret;
>   
> +	ret = devm_add_action_or_reset(dev, uniphier_clk_disable, priv);
> +	if (ret)
> +		return ret;
> +
>   	ret = reset_control_bulk_deassert(priv->data->nrsts, priv->rst);
>   	if (ret)
> -		goto out_clk_disable;
> +		return ret;
> +
> +	ret = devm_add_action_or_reset(dev, uniphier_rst_assert, priv);
> +	if (ret)
> +		return ret;
>   
>   	spin_lock_init(&priv->rdata.lock);
>   	priv->rdata.rcdev.owner = THIS_MODULE;
> @@ -81,30 +103,7 @@ static int uniphier_glue_reset_probe(struct
> platform_device *pdev)
>   
>   	platform_set_drvdata(pdev, priv);
>   
> -	ret = devm_reset_controller_register(dev, &priv->rdata.rcdev);
> -	if (ret)
> -		goto out_rst_assert;
> -
> -	return 0;
> -
> -out_rst_assert:
> -	reset_control_bulk_assert(priv->data->nrsts, priv->rst);
> -
> -out_clk_disable:
> -	clk_bulk_disable_unprepare(priv->data->nclks, priv->clk);
> -
> -	return ret;
> -}
> -
> -static int uniphier_glue_reset_remove(struct platform_device *pdev)
> -{
> -	struct uniphier_glue_reset_priv *priv =
> platform_get_drvdata(pdev);
> -
> -	reset_control_bulk_assert(priv->data->nrsts, priv->rst);
> -
> -	clk_bulk_disable_unprepare(priv->data->nclks, priv->clk);
> -
> -	return 0;
> +	return devm_reset_controller_register(dev, &priv->rdata.rcdev);
>   }
>   
>   static const char * const uniphier_pro4_clock_reset_names[] = {
> @@ -172,7 +171,6 @@ MODULE_DEVICE_TABLE(of, uniphier_glue_reset_match);
>   
>   static struct platform_driver uniphier_glue_reset_driver = {
>   	.probe = uniphier_glue_reset_probe,
> -	.remove = uniphier_glue_reset_remove,
>   	.driver = {
>   		.name = "uniphier-glue-reset",
>   		.of_match_table = uniphier_glue_reset_match,
> 

---
Best Regards
Kunihiko Hayashi
diff mbox series

Patch

diff --git a/drivers/reset/reset-uniphier-glue.c b/drivers/reset/reset-uniphier-glue.c
index 9b22c4a91d77..146fd5d45e99 100644
--- a/drivers/reset/reset-uniphier-glue.c
+++ b/drivers/reset/reset-uniphier-glue.c
@@ -28,6 +28,20 @@  struct uniphier_glue_reset_priv {
 	const struct uniphier_glue_reset_soc_data *data;
 };
 
+static void uniphier_clk_disable(void *_priv)
+{
+	struct uniphier_glue_reset_priv *priv = _priv;
+
+	clk_bulk_disable_unprepare(priv->data->nclks, priv->clk);
+}
+
+static void uniphier_rst_assert(void *_priv)
+{
+	struct uniphier_glue_reset_priv *priv = _priv;
+
+	reset_control_bulk_assert(priv->data->nrsts, priv->rst);
+}
+
 static int uniphier_glue_reset_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
@@ -68,9 +82,17 @@  static int uniphier_glue_reset_probe(struct platform_device *pdev)
 	if (ret)
 		return ret;
 
+	ret = devm_add_action_or_reset(dev, uniphier_clk_disable, priv);
+	if (ret)
+		return ret;
+
 	ret = reset_control_bulk_deassert(priv->data->nrsts, priv->rst);
 	if (ret)
-		goto out_clk_disable;
+		return ret;
+
+	ret = devm_add_action_or_reset(dev, uniphier_rst_assert, priv);
+	if (ret)
+		return ret;
 
 	spin_lock_init(&priv->rdata.lock);
 	priv->rdata.rcdev.owner = THIS_MODULE;
@@ -81,30 +103,7 @@  static int uniphier_glue_reset_probe(struct platform_device *pdev)
 
 	platform_set_drvdata(pdev, priv);
 
-	ret = devm_reset_controller_register(dev, &priv->rdata.rcdev);
-	if (ret)
-		goto out_rst_assert;
-
-	return 0;
-
-out_rst_assert:
-	reset_control_bulk_assert(priv->data->nrsts, priv->rst);
-
-out_clk_disable:
-	clk_bulk_disable_unprepare(priv->data->nclks, priv->clk);
-
-	return ret;
-}
-
-static int uniphier_glue_reset_remove(struct platform_device *pdev)
-{
-	struct uniphier_glue_reset_priv *priv = platform_get_drvdata(pdev);
-
-	reset_control_bulk_assert(priv->data->nrsts, priv->rst);
-
-	clk_bulk_disable_unprepare(priv->data->nclks, priv->clk);
-
-	return 0;
+	return devm_reset_controller_register(dev, &priv->rdata.rcdev);
 }
 
 static const char * const uniphier_pro4_clock_reset_names[] = {
@@ -172,7 +171,6 @@  MODULE_DEVICE_TABLE(of, uniphier_glue_reset_match);
 
 static struct platform_driver uniphier_glue_reset_driver = {
 	.probe = uniphier_glue_reset_probe,
-	.remove = uniphier_glue_reset_remove,
 	.driver = {
 		.name = "uniphier-glue-reset",
 		.of_match_table = uniphier_glue_reset_match,