Thread (4 messages) flat view 4 messages, 2 authors, 2021-12-16

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

From: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Date: 2021-12-16 00:34:26

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,
quoted hunk ↗ jump to hunk
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

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help