-
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: msm: move all qualcomm drivers to subdir
We have four Qualcomm-related pin control drivers, and now there are drivers coming in for the PMICs on these systems, so let's create a qcom subdirectory to hold all the Qualcomm stuff. Acked-by: Ivan T. Ivanov <iivanov@mm-sol.com> Acked-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
- Loading branch information
Linus Walleij
committed
Jul 11, 2014
1 parent
14d40ff
commit 69b78b8
Showing
10 changed files
with
53 additions
and
47 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,42 @@ | ||
if (ARCH_QCOM || COMPILE_TEST) | ||
|
||
config PINCTRL_MSM | ||
bool | ||
select PINMUX | ||
select PINCONF | ||
select GENERIC_PINCONF | ||
select GPIOLIB_IRQCHIP | ||
|
||
config PINCTRL_APQ8064 | ||
tristate "Qualcomm APQ8064 pin controller driver" | ||
depends on GPIOLIB && OF | ||
select PINCTRL_MSM | ||
help | ||
This is the pinctrl, pinmux, pinconf and gpiolib driver for the | ||
Qualcomm TLMM block found in the Qualcomm APQ8064 platform. | ||
|
||
config PINCTRL_IPQ8064 | ||
tristate "Qualcomm IPQ8064 pin controller driver" | ||
depends on GPIOLIB && OF | ||
select PINCTRL_MSM | ||
help | ||
This is the pinctrl, pinmux, pinconf and gpiolib driver for the | ||
Qualcomm TLMM block found in the Qualcomm IPQ8064 platform. | ||
|
||
config PINCTRL_MSM8960 | ||
tristate "Qualcomm 8960 pin controller driver" | ||
depends on GPIOLIB && OF | ||
select PINCTRL_MSM | ||
help | ||
This is the pinctrl, pinmux, pinconf and gpiolib driver for the | ||
Qualcomm TLMM block found in the Qualcomm 8960 platform. | ||
|
||
config PINCTRL_MSM8X74 | ||
tristate "Qualcomm 8x74 pin controller driver" | ||
depends on GPIOLIB && OF | ||
select PINCTRL_MSM | ||
help | ||
This is the pinctrl, pinmux, pinconf and gpiolib driver for the | ||
Qualcomm TLMM block found in the Qualcomm 8974 platform. | ||
|
||
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,6 @@ | ||
# Qualcomm pin control drivers | ||
obj-$(CONFIG_PINCTRL_MSM) += pinctrl-msm.o | ||
obj-$(CONFIG_PINCTRL_APQ8064) += pinctrl-apq8064.o | ||
obj-$(CONFIG_PINCTRL_IPQ8064) += pinctrl-ipq8064.o | ||
obj-$(CONFIG_PINCTRL_MSM8960) += pinctrl-msm8960.o | ||
obj-$(CONFIG_PINCTRL_MSM8X74) += pinctrl-msm8x74.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
File renamed without changes.
File renamed without changes.
File renamed without changes.