clk: sunxi: explicitly request exclusive reset control
authorPhilipp Zabel <p.zabel@pengutronix.de>
Wed, 19 Jul 2017 15:25:13 +0000 (17:25 +0200)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 2 Nov 2017 05:54:55 +0000 (22:54 -0700)
Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting
reset lines") started to transition the reset control request API calls
to explicitly state whether the driver needs exclusive or shared reset
control behavior. Convert all drivers requesting exclusive resets to the
explicit API call so the temporary transition helpers can be removed.

No functional changes.

Cc: "Emilio López" <emilio@elopez.com.ar>
Cc: Michael Turquette <mturquette@baylibre.com>
Cc: Stephen Boyd <sboyd@codeaurora.org>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Chen-Yu Tsai <wens@csie.org>
Cc: linux-clk@vger.kernel.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/sunxi/clk-sun9i-mmc.c

index 6041bdb..a1a6342 100644 (file)
@@ -124,7 +124,7 @@ static int sun9i_a80_mmc_config_clk_probe(struct platform_device *pdev)
                return PTR_ERR(data->clk);
        }
 
-       data->reset = devm_reset_control_get(&pdev->dev, NULL);
+       data->reset = devm_reset_control_get_exclusive(&pdev->dev, NULL);
        if (IS_ERR(data->reset)) {
                dev_err(&pdev->dev, "Could not get reset control\n");
                return PTR_ERR(data->reset);