aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource/arm_arch_timer.c
diff options
context:
space:
mode:
authorFu Wei <[email protected]>2017-01-18 13:25:28 +0000
committerMark Rutland <[email protected]>2017-04-10 13:29:54 +0000
commit831610c08e63b69b141c446c78eb9e9315660a5d (patch)
tree94b9f1808f1a91c6273899f88585573cb2e5d26d /drivers/clocksource/arm_arch_timer.c
parentclocksource: arm_arch_timer: rename the PPI enum (diff)
downloadkernel-831610c08e63b69b141c446c78eb9e9315660a5d.tar.gz
kernel-831610c08e63b69b141c446c78eb9e9315660a5d.zip
clocksource: arm_arch_timer: move enums and defines to header file
To support the arm_arch_timer via ACPI we need to share defines and enums between the driver and the ACPI parser code. So we split out the relevant defines and enums into arm_arch_timer.h. No functional change. Signed-off-by: Fu Wei <[email protected]> Acked-by: Mark Rutland <[email protected]> Tested-by: Xiongfeng Wang <[email protected]> Signed-off-by: Mark Rutland <[email protected]>
Diffstat (limited to 'drivers/clocksource/arm_arch_timer.c')
-rw-r--r--drivers/clocksource/arm_arch_timer.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c
index 94e355bb0d38..04218c1043e1 100644
--- a/drivers/clocksource/arm_arch_timer.c
+++ b/drivers/clocksource/arm_arch_timer.c
@@ -55,8 +55,6 @@
#define CNTV_TVAL 0x38
#define CNTV_CTL 0x3c
-#define ARCH_TIMER_TYPE_CP15 BIT(0)
-#define ARCH_TIMER_TYPE_MEM BIT(1)
static unsigned arch_timers_present __initdata;
static void __iomem *arch_counter_base;
@@ -69,15 +67,6 @@ struct arch_timer {
#define to_arch_timer(e) container_of(e, struct arch_timer, evt)
static u32 arch_timer_rate;
-
-enum arch_timer_ppi_nr {
- ARCH_TIMER_PHYS_SECURE_PPI,
- ARCH_TIMER_PHYS_NONSECURE_PPI,
- ARCH_TIMER_VIRT_PPI,
- ARCH_TIMER_HYP_PPI,
- ARCH_TIMER_MAX_TIMER_PPI
-};
-
static int arch_timer_ppi[ARCH_TIMER_MAX_TIMER_PPI];
static struct clock_event_device __percpu *arch_timer_evt;