]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
pinctrl: stm32: explicitly request exclusive reset control
authorPhilipp Zabel <p.zabel@pengutronix.de>
Wed, 19 Jul 2017 15:26:10 +0000 (17:26 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 14 Aug 2017 13:01:01 +0000 (15:01 +0200)
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: Linus Walleij <linus.walleij@linaro.org>
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Cc: Alexandre Torgue <alexandre.torgue@st.com>
Cc: linux-gpio@vger.kernel.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/stm32/pinctrl-stm32.c

index 06431ff49ffb278e0344778e4e0e92d44430283d..50299ad966590e8ae0ce2813d1f803c790c6ce51 100644 (file)
@@ -952,7 +952,7 @@ static int stm32_gpiolib_register_bank(struct stm32_pinctrl *pctl,
        int npins = STM32_GPIO_PINS_PER_BANK;
        int bank_nr, err;
 
-       rstc = of_reset_control_get(np, NULL);
+       rstc = of_reset_control_get_exclusive(np, NULL);
        if (!IS_ERR(rstc))
                reset_control_deassert(rstc);