diff options
Diffstat (limited to 'arch/arm/mach-msm/timer.c')
| -rw-r--r-- | arch/arm/mach-msm/timer.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-msm/timer.c b/arch/arm/mach-msm/timer.c index 444d9c0f5ca..4855b8ca510 100644 --- a/arch/arm/mach-msm/timer.c +++ b/arch/arm/mach-msm/timer.c @@ -57,12 +57,12 @@ static irqreturn_t msm_timer_interrupt(int irq, void *dev_id)  	return IRQ_HANDLED;  } -static cycle_t msm_gpt_read(void) +static cycle_t msm_gpt_read(struct clocksource *cs)  {  	return readl(MSM_GPT_BASE + TIMER_COUNT_VAL);  } -static cycle_t msm_dgt_read(void) +static cycle_t msm_dgt_read(struct clocksource *cs)  {  	return readl(MSM_DGT_BASE + TIMER_COUNT_VAL) >> MSM_DGT_SHIFT;  }  |