diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2017-10-09 22:53:39 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-10-31 09:45:19 +0100 |
commit | 1396007286b1e2fd5dd10ae6a5ccaaaed51ab762 (patch) | |
tree | 707aa8b71b006ae984deb5e70ab6c81dfbc2fd2d /drivers/pinctrl/sunxi | |
parent | cd70387f892205bcd7b8093b0837269b0739cbe0 (diff) | |
download | talos-obmc-linux-1396007286b1e2fd5dd10ae6a5ccaaaed51ab762.tar.gz talos-obmc-linux-1396007286b1e2fd5dd10ae6a5ccaaaed51ab762.zip |
pinctrl: sunxi: Enforce the strict mode by default
The strict mode should always have been enabled on our driver, and leaving
it unchecked just makes it harder to find a migration path as time passes.
Let's enable it by default now so that hopefully the new SoCs should be
safe.
Acked-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/sunxi')
-rw-r--r-- | drivers/pinctrl/sunxi/pinctrl-sunxi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/sunxi/pinctrl-sunxi.c b/drivers/pinctrl/sunxi/pinctrl-sunxi.c index 3bbb34435e0f..4b6cb25bc796 100644 --- a/drivers/pinctrl/sunxi/pinctrl-sunxi.c +++ b/drivers/pinctrl/sunxi/pinctrl-sunxi.c @@ -696,6 +696,7 @@ static const struct pinmux_ops sunxi_pmx_ops = { .get_function_groups = sunxi_pmx_get_func_groups, .set_mux = sunxi_pmx_set_mux, .gpio_set_direction = sunxi_pmx_gpio_set_direction, + .strict = true, }; static int sunxi_pinctrl_gpio_direction_input(struct gpio_chip *chip, |