]> git.karo-electronics.de Git - linux-beck.git/commitdiff
gpio: mxc: shift gpio_mxc_init() to subsys_initcall level
authorVladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
Thu, 8 Sep 2016 01:48:15 +0000 (04:48 +0300)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 12 Sep 2016 12:27:41 +0000 (14:27 +0200)
In general situation on-SoC GPIO controller drivers should be probed
after pinctrl/pinmux controller driver, because on-SoC GPIOs utilize a
pin/pad as a resource provided and controlled by pinctrl subsystem.

This is stated in multiple places, e.g. from drivers/Makefile:

  GPIO must come after pinctrl as gpios may need to mux pins etc

Looking at Freescale iMX SoC series specifics, imx*_pinctrl_init()
functions are called at arch_initcall and postcore_initcall init
levels, so the change of initcall level for gpio-mxc driver from
postcore_initcall to subsys_initcall level is sufficient. Also note
that the most of GPIO controller drivers settled at subsys_initcall
level.

If pinctrl subsystem manages pads with GPIO functions, the change is
needed to avoid unwanted driver probe deferrals during kernel boot.

Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
Acked-by: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-mxc.c

index 1b342a3842c824158b424141636a7df368b3c787..1fdd5d804b5b6377aa2acc436c61ba74ec3b4f74 100644 (file)
@@ -510,7 +510,7 @@ static int __init gpio_mxc_init(void)
 {
        return platform_driver_register(&mxc_gpio_driver);
 }
-postcore_initcall(gpio_mxc_init);
+subsys_initcall(gpio_mxc_init);
 
 MODULE_AUTHOR("Freescale Semiconductor, "
              "Daniel Mack <danielncaiaq.de>, "