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.
This follows the intc/clk changes and shuffles the PFC support code under its own directory. This will facilitate better code sharing, and allow us to trim down the exported interface by quite a margin. Signed-off-by: Paul Mundt <[email protected]>
- Loading branch information
Showing
7 changed files
with
21 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
menu "SuperH / SH-Mobile Driver Options" | ||
|
||
source "drivers/sh/intc/Kconfig" | ||
|
||
comment "Pin function controller options" | ||
|
||
config SH_PFC | ||
# XXX move off the gpio dependency | ||
depends on GENERIC_GPIO | ||
select GPIO_SH_PFC if ARCH_REQUIRE_GPIOLIB | ||
def_bool y | ||
|
||
config GPIO_SH_PFC | ||
tristate "SuperH PFC GPIO support" | ||
depends on SH_PFC && GPIOLIB | ||
help | ||
This enables support for GPIOs within the SoC's pin function | ||
controller. | ||
source "drivers/sh/pfc/Kconfig" | ||
|
||
endmenu |
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,14 @@ | ||
comment "Pin function controller options" | ||
|
||
config SH_PFC | ||
# XXX move off the gpio dependency | ||
depends on GENERIC_GPIO | ||
select GPIO_SH_PFC if ARCH_REQUIRE_GPIOLIB | ||
def_bool y | ||
|
||
config GPIO_SH_PFC | ||
tristate "SuperH PFC GPIO support" | ||
depends on SH_PFC && GPIOLIB | ||
help | ||
This enables support for GPIOs within the SoC's pin function | ||
controller. |
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,2 @@ | ||
obj-y += core.o | ||
obj-$(CONFIG_GPIO_SH_PFC) += gpio.o |
File renamed without changes.
File renamed without changes.
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