aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-msm/Makefile
diff options
context:
space:
mode:
authorGregory Bean <gbean@codeaurora.org>2010-09-10 15:03:36 -0700
committerDaniel Walker <dwalker@codeaurora.org>2010-10-06 09:01:19 -0700
commit2783cc265cc57c4bbf788b75fa8c3f06259dffd1 (patch)
treebb8d1b52c83ee451fd9b06e4bb4df5d2ed4bb1f3 /arch/arm/mach-msm/Makefile
parentab78cde589e89afa039a13bc75d23d249f1c1200 (diff)
downloadkernel_samsung_smdk4412-2783cc265cc57c4bbf788b75fa8c3f06259dffd1.zip
kernel_samsung_smdk4412-2783cc265cc57c4bbf788b75fa8c3f06259dffd1.tar.gz
kernel_samsung_smdk4412-2783cc265cc57c4bbf788b75fa8c3f06259dffd1.tar.bz2
msm: add gpio driver for single-core SoCs.
Install a gpiolib driver supporting the on-chip gpios for single-core MSMs in the 7x00 family, including 7x00A, 7x25, 7x27, 7x30, 8x50, and 8x50a. As part of the ongoing effort to converge on a common code base, this driver is based on the Google-Android msmgpio driver, whose authors include Brian Swetland and Arve Hjønnevåg. Cc: Arve Hjønnevåg <arve@android.com> Cc: H Hartley Sweeten <hartleys@visionengravers.com> Cc: Ryan Mallon <ryan@bluewatersys.com> Cc: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Gregory Bean <gbean@codeaurora.org> Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/Makefile')
-rw-r--r--arch/arm/mach-msm/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-msm/Makefile b/arch/arm/mach-msm/Makefile
index 2263b8f..c95d19a 100644
--- a/arch/arm/mach-msm/Makefile
+++ b/arch/arm/mach-msm/Makefile
@@ -22,3 +22,6 @@ obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o
obj-$(CONFIG_ARCH_MSM7X30) += gpiomux-7x30.o gpiomux-v1.o gpiomux.o
obj-$(CONFIG_ARCH_QSD8X50) += gpiomux-8x50.o gpiomux-v1.o gpiomux.o
obj-$(CONFIG_ARCH_MSM8X60) += gpiomux-8x60.o gpiomux-v2.o gpiomux.o
+ifndef CONFIG_MSM_V2_TLMM
+obj-y += gpio.o
+endif