diff options
author | Erik Gilling <konkers@android.com> | 2010-03-15 19:40:06 -0700 |
---|---|---|
committer | Erik Gilling <konkers@android.com> | 2010-08-05 14:57:02 -0700 |
commit | 3c92db9ac0ca3eee8e46e2424b6c074e2e394ad9 (patch) | |
tree | 91bce4b3fa4cd34e415476a903d71dd759f9d598 /arch/arm/mach-tegra/Makefile | |
parent | 2d5cd9a38b3792426115adbedce539bd45ee640e (diff) | |
download | kernel_samsung_smdk4412-3c92db9ac0ca3eee8e46e2424b6c074e2e394ad9.zip kernel_samsung_smdk4412-3c92db9ac0ca3eee8e46e2424b6c074e2e394ad9.tar.gz kernel_samsung_smdk4412-3c92db9ac0ca3eee8e46e2424b6c074e2e394ad9.tar.bz2 |
[ARM] tegra: add GPIO support
v2: fixes from Mike Rapoport:
- move gpio-names.h to arch/arm/mach-tegra
fixes from Russell King
- include linux/io.h and linux/gpio.h instead of asm/io.h
and asm/gpio.h
additional changes:
- add macros to convert between irq and gpio numbers for platform data
- change for_each_bit to for_each_set_bit in gpio.c
v3:
- minor bugfixes
Signed-off-by: Colin Cross <ccross@android.com>
Signed-off-by: Erik Gilling <konkers@android.com>
Diffstat (limited to 'arch/arm/mach-tegra/Makefile')
-rw-r--r-- | arch/arm/mach-tegra/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index 01f47fd..122f7dc 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile @@ -3,6 +3,7 @@ obj-y += io.o obj-y += irq.o obj-y += clock.o obj-y += timer.o +obj-y += gpio.o obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o obj-$(CONFIG_SMP) += platsmp.o localtimer.o headsmp.o obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o |