diff options
author | Colin Cross <ccross@android.com> | 2010-01-28 19:41:42 -0500 |
---|---|---|
committer | Erik Gilling <konkers@android.com> | 2010-08-05 17:57:02 -0400 |
commit | 2d5cd9a38b3792426115adbedce539bd45ee640e (patch) | |
tree | 2c74d876e2ac955d441b51e89c5e2bc8f6cddf6d /arch/arm/mach-tegra/Makefile | |
parent | 1cea7326b3fff97d17d33fb8f33163409a84431b (diff) |
[ARM] tegra: Add timer support
v2: fixes from Russell King:
- include linux/io.h instead of asm/io.h
fixes from Gary King:
- remove extra (and incorrect) irq definitions
- use timer 3 instead of timer 1 for compatibility with other drivers
- fix typo that disabled oneshot mode
v3:
- Implement sched_clock
- Fix checkpatch issues
fixes from Gary King:
- Fix incorrect cycles calculation
- Fix min_delta_ns assignment
fixes from Linus Walleij:
- use calc_mult_shift() instead of hard coding values
Signed-off-by: Colin Cross <ccross@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 f339559ca161..01f47fd4044e 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile | |||
@@ -2,6 +2,7 @@ obj-y += common.o | |||
2 | obj-y += io.o | 2 | obj-y += io.o |
3 | obj-y += irq.o | 3 | obj-y += irq.o |
4 | obj-y += clock.o | 4 | obj-y += clock.o |
5 | obj-y += timer.o | ||
5 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o | 6 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o |
6 | obj-$(CONFIG_SMP) += platsmp.o localtimer.o headsmp.o | 7 | obj-$(CONFIG_SMP) += platsmp.o localtimer.o headsmp.o |
7 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o | 8 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o |