forked from torvalds/linux
-
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: sunxi: Remove PINCTRL_SUNXI
The PINCTRL_SUNXI configuration was kept only to deal with the introduction of per-machine symbols and the various pintrl drivers through different tree. Now that it's not useful anymore, we can just remove it. Signed-off-by: Maxime Ripard <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,33 @@ | ||
if ARCH_SUNXI | ||
|
||
config PINCTRL_SUNXI | ||
bool | ||
|
||
config PINCTRL_SUNXI_COMMON | ||
bool | ||
select PINMUX | ||
select GENERIC_PINCONF | ||
|
||
config PINCTRL_SUN4I_A10 | ||
def_bool PINCTRL_SUNXI || MACH_SUN4I | ||
def_bool MACH_SUN4I | ||
select PINCTRL_SUNXI_COMMON | ||
|
||
config PINCTRL_SUN5I_A10S | ||
def_bool PINCTRL_SUNXI || MACH_SUN5I | ||
def_bool MACH_SUN5I | ||
select PINCTRL_SUNXI_COMMON | ||
|
||
config PINCTRL_SUN5I_A13 | ||
def_bool PINCTRL_SUNXI || MACH_SUN5I | ||
def_bool MACH_SUN5I | ||
select PINCTRL_SUNXI_COMMON | ||
|
||
config PINCTRL_SUN6I_A31 | ||
def_bool PINCTRL_SUNXI || MACH_SUN6I | ||
def_bool MACH_SUN6I | ||
select PINCTRL_SUNXI_COMMON | ||
|
||
config PINCTRL_SUN6I_A31_R | ||
def_bool PINCTRL_SUNXI || MACH_SUN6I | ||
def_bool MACH_SUN6I | ||
depends on RESET_CONTROLLER | ||
select PINCTRL_SUNXI_COMMON | ||
|
||
config PINCTRL_SUN7I_A20 | ||
def_bool PINCTRL_SUNXI || MACH_SUN7I | ||
def_bool MACH_SUN7I | ||
select PINCTRL_SUNXI_COMMON | ||
|
||
endif |