summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-exynos4/localtimer.c
diff options
context:
space:
mode:
authorChanghwan Youn <chaos.youn@samsung.com>2011-07-16 10:49:53 +0900
committerKukjin Kim <kgene.kim@samsung.com>2011-07-20 23:33:43 +0900
commit069d4e743c4b0c56c5a5374e1636db3ffe24ca32 (patch)
tree864effe3ba5031657af0282ef2bba29c7d104c7e /arch/arm/mach-exynos4/localtimer.c
parentaab74d3e753649defa52ea43cbec1e91ebb4cc8e (diff)
downloadlinux-069d4e743c4b0c56c5a5374e1636db3ffe24ca32.tar.gz
linux-069d4e743c4b0c56c5a5374e1636db3ffe24ca32.tar.bz2
linux-069d4e743c4b0c56c5a5374e1636db3ffe24ca32.zip
ARM: EXYNOS4: Remove clock event timers using ARM private timers
External GIC cannot support PPI (Private Peripheral Interrupt) for ARM private timers. Thus MCT should be selected as clock event timers by default. Signed-off-by: Changhwan Youn <chaos.youn@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos4/localtimer.c')
-rw-r--r--arch/arm/mach-exynos4/localtimer.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/arm/mach-exynos4/localtimer.c b/arch/arm/mach-exynos4/localtimer.c
deleted file mode 100644
index 6bf3d0ab9627..000000000000
--- a/arch/arm/mach-exynos4/localtimer.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/* linux/arch/arm/mach-exynos4/localtimer.c
- *
- * Cloned from linux/arch/arm/mach-realview/localtimer.c
- *
- * Copyright (C) 2002 ARM Ltd.
- * All Rights Reserved
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
-*/
-
-#include <linux/clockchips.h>
-
-#include <asm/irq.h>
-#include <asm/localtimer.h>
-
-/*
- * Setup the local clock events for a CPU.
- */
-int __cpuinit local_timer_setup(struct clock_event_device *evt)
-{
- evt->irq = IRQ_LOCALTIMER;
- twd_timer_setup(evt);
- return 0;
-}