diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2017-01-08 22:31:16 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-01-09 15:42:47 +0100 |
commit | 858f559f3dab00fda3fca4f187a315d5c9220fad (patch) | |
tree | 65e110794f7b87fb50b2c6e427da238742c92647 /drivers/pinctrl/sunxi/Makefile | |
parent | 578db85f6777efedfc5b47a34f5b6576caa29eac (diff) | |
download | lwn-858f559f3dab00fda3fca4f187a315d5c9220fad.tar.gz lwn-858f559f3dab00fda3fca4f187a315d5c9220fad.zip |
pinctrl: sunxi: Add common sun5i pinctrl driver
The sun5i SoCs (A10s, A13, GR8) are all based on the same die fit in
different packages. Hence, the pins and functions available are just the
based on the same set, each SoC having a different subset.
Introduce a common pinctrl driver that supports multiple variants to allow
to put as much as we can in common.
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/Makefile')
-rw-r--r-- | drivers/pinctrl/sunxi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/sunxi/Makefile b/drivers/pinctrl/sunxi/Makefile index 95f93d0561fc..2037e99ae3fc 100644 --- a/drivers/pinctrl/sunxi/Makefile +++ b/drivers/pinctrl/sunxi/Makefile @@ -3,6 +3,7 @@ obj-y += pinctrl-sunxi.o # SoC Drivers obj-$(CONFIG_PINCTRL_SUN4I_A10) += pinctrl-sun4i-a10.o +obj-$(CONFIG_PINCTRL_SUN5I) += pinctrl-sun5i.o obj-$(CONFIG_PINCTRL_SUN5I_A10S) += pinctrl-sun5i-a10s.o obj-$(CONFIG_PINCTRL_SUN5I_A13) += pinctrl-sun5i-a13.o obj-$(CONFIG_PINCTRL_GR8) += pinctrl-gr8.o |