summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/Makefile
diff options
context:
space:
mode:
authorKrishna Reddy <vdumpa@nvidia.com>2011-10-18 16:46:25 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:49:57 -0800
commite4cb3c4d365364d6fdb0925132ad9b0ce8acda8f (patch)
tree1797d8c27fd07244cd920bb4f0aba285d3eea7dd /arch/arm/mach-tegra/Makefile
parentf24656db4af14f6ba94dbabbb7ebb6ccb66b3658 (diff)
arm: tegra: Fix sync point intr registration issue.
Perform sync point interrupt registration only when CONFIG_TEGRA_GRHOST is enabled. Reviewed-on: http://git-master/r/62719 Reviewed-by: Varun Colbert <vcolbert@nvidia.com> Tested-by: Varun Colbert <vcolbert@nvidia.com> (cherry picked from commit 0f1a8ad77749a1abee7893b7a1a8829a95a4711f) Change-Id: I8749abc918247f4bda0332c02908741caeb08608 Reviewed-on: http://git-master/r/63415 Reviewed-by: Varun Colbert <vcolbert@nvidia.com> Tested-by: Varun Colbert <vcolbert@nvidia.com> Rebase-Id: R94f39f55f13637998ea41456621b67adc506130a
Diffstat (limited to 'arch/arm/mach-tegra/Makefile')
-rw-r--r--arch/arm/mach-tegra/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile
index cff2cd0c3ffb..13b8c6b58449 100644
--- a/arch/arm/mach-tegra/Makefile
+++ b/arch/arm/mach-tegra/Makefile
@@ -5,7 +5,7 @@ obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += common-t2.o
obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += common-t3.o
obj-y += io.o
obj-y += irq.o
-obj-y += syncpt.o
+obj-$(CONFIG_TEGRA_GRHOST) += syncpt.o
obj-y += clock.o
obj-y += timer.o
ifeq ($(CONFIG_ARCH_TEGRA_2x_SOC),y)