-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pinctrl: mvebu: move to its own directory
Like the spear platform, the mvebu platform has multiple files: one core file, and then one file per SoC family. More files will be added later, as support for mach-orion5x and mach-mv78xx0 SoCs is added to pinctrl-mvebu. For those reasons, having a separate subdirectory, drivers/pinctrl/mvebu/ makes sense, and it had already been suggested by Linus Wallej when the driver was originally submitted. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
- Loading branch information
Thomas Petazzoni
authored and
Linus Walleij
committed
Nov 11, 2012
1 parent
de1d762
commit 06763c7
Showing
10 changed files
with
31 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
if PLAT_ORION | ||
|
||
config PINCTRL_MVEBU | ||
bool | ||
select PINMUX | ||
select PINCONF | ||
|
||
config PINCTRL_DOVE | ||
bool | ||
select PINCTRL_MVEBU | ||
|
||
config PINCTRL_KIRKWOOD | ||
bool | ||
select PINCTRL_MVEBU | ||
|
||
config PINCTRL_ARMADA_370 | ||
bool | ||
select PINCTRL_MVEBU | ||
|
||
config PINCTRL_ARMADA_XP | ||
bool | ||
select PINCTRL_MVEBU | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
obj-$(CONFIG_PINCTRL_MVEBU) += pinctrl-mvebu.o | ||
obj-$(CONFIG_PINCTRL_DOVE) += pinctrl-dove.o | ||
obj-$(CONFIG_PINCTRL_KIRKWOOD) += pinctrl-kirkwood.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_370) += pinctrl-armada-370.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_XP) += pinctrl-armada-xp.o |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.