diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2014-04-18 20:12:50 +0200 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2014-05-04 00:03:28 -0700 |
commit | f2821b1ca3a21c21e8c1256ab45d70b00d1d6398 (patch) | |
tree | 51d7f2ab4772ae8800780c2eeceb52876ac99bb9 /drivers/pinctrl/sunxi/Makefile | |
parent | 2284ba6b7d8310d09f3a0a5d81669632532ec26c (diff) | |
download | blackbird-obmc-linux-f2821b1ca3a21c21e8c1256ab45d70b00d1d6398.tar.gz blackbird-obmc-linux-f2821b1ca3a21c21e8c1256ab45d70b00d1d6398.zip |
pinctrl: sunxi: Move Allwinner A10 pinctrl driver to a driver of its own
Move the pin description to a driver specific to be. This is one more step
toward retiring pinctrl-sunxi-pins.h that used to define all the pins for all
the Allwinner SoCs in a single header, that would have in turn result in having
these structures in the final binary as many times as the header was included.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'drivers/pinctrl/sunxi/Makefile')
-rw-r--r-- | drivers/pinctrl/sunxi/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/pinctrl/sunxi/Makefile b/drivers/pinctrl/sunxi/Makefile index 09a7621e09e8..e0ef0683dd46 100644 --- a/drivers/pinctrl/sunxi/Makefile +++ b/drivers/pinctrl/sunxi/Makefile @@ -1 +1,5 @@ +# Core obj-$(CONFIG_PINCTRL_SUNXI) += pinctrl-sunxi.o + +# SoC Drivers +obj-$(CONFIG_PINCTRL_SUNXI) += pinctrl-sun4i-a10.o |