diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-15 11:48:51 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-15 11:48:51 -0500 |
commit | 5870b2c719b15cfe3f2de3e8be51bc6e17c67e7a (patch) | |
tree | 4e07c0d5a2aeca013c38c4845229c726a14b4050 /drivers | |
parent | 642ba5ed7ac7a2369ed2a3c5aa4d76306d06bd03 (diff) | |
parent | 45f034ef205e5439a50d6f7e5f89add93131c0cc (diff) |
Merge branch 'fixes' of git://git.linaro.org/people/triad/linux-pinctrl
* 'fixes' of git://git.linaro.org/people/triad/linux-pinctrl:
pinctrl: hide subsystem from the populace
pinctrl: fix "warning: 'struct pinctrl_dev' declared inside parameter list"
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pinctrl/Kconfig | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index ef566443f945..e17e2f8001d2 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig | |||
@@ -2,23 +2,17 @@ | |||
2 | # PINCTRL infrastructure and drivers | 2 | # PINCTRL infrastructure and drivers |
3 | # | 3 | # |
4 | 4 | ||
5 | menuconfig PINCTRL | 5 | config PINCTRL |
6 | bool "PINCTRL Support" | 6 | bool |
7 | depends on EXPERIMENTAL | 7 | depends on EXPERIMENTAL |
8 | help | ||
9 | This enables the PINCTRL subsystem for controlling pins | ||
10 | on chip packages, for example multiplexing pins on primarily | ||
11 | PGA and BGA packages for systems on chip. | ||
12 | |||
13 | If unsure, say N. | ||
14 | 8 | ||
15 | if PINCTRL | 9 | if PINCTRL |
16 | 10 | ||
11 | menu "Pin controllers" | ||
12 | depends on PINCTRL | ||
13 | |||
17 | config PINMUX | 14 | config PINMUX |
18 | bool "Support pinmux controllers" | 15 | bool "Support pinmux controllers" |
19 | help | ||
20 | Say Y here if you want the pincontrol subsystem to handle pin | ||
21 | multiplexing drivers. | ||
22 | 16 | ||
23 | config DEBUG_PINCTRL | 17 | config DEBUG_PINCTRL |
24 | bool "Debug PINCTRL calls" | 18 | bool "Debug PINCTRL calls" |
@@ -30,14 +24,12 @@ config PINMUX_SIRF | |||
30 | bool "CSR SiRFprimaII pinmux driver" | 24 | bool "CSR SiRFprimaII pinmux driver" |
31 | depends on ARCH_PRIMA2 | 25 | depends on ARCH_PRIMA2 |
32 | select PINMUX | 26 | select PINMUX |
33 | help | ||
34 | Say Y here to enable the SiRFprimaII pinmux driver | ||
35 | 27 | ||
36 | config PINMUX_U300 | 28 | config PINMUX_U300 |
37 | bool "U300 pinmux driver" | 29 | bool "U300 pinmux driver" |
38 | depends on ARCH_U300 | 30 | depends on ARCH_U300 |
39 | select PINMUX | 31 | select PINMUX |
40 | help | 32 | |
41 | Say Y here to enable the U300 pinmux driver | 33 | endmenu |
42 | 34 | ||
43 | endif | 35 | endif |