diff options
Diffstat (limited to 'arch/arm/mach-picoxcell/time.c')
| -rw-r--r-- | arch/arm/mach-picoxcell/time.c | 17 | 
1 files changed, 3 insertions, 14 deletions
diff --git a/arch/arm/mach-picoxcell/time.c b/arch/arm/mach-picoxcell/time.c index 90a554ff449..6c89cf8ab22 100644 --- a/arch/arm/mach-picoxcell/time.c +++ b/arch/arm/mach-picoxcell/time.c @@ -11,7 +11,6 @@  #include <linux/of.h>  #include <linux/of_address.h>  #include <linux/of_irq.h> -#include <linux/sched.h>  #include <asm/mach/time.h>  #include <asm/sched_clock.h> @@ -66,21 +65,11 @@ static void picoxcell_add_clocksource(struct device_node *source_timer)  	dw_apb_clocksource_register(cs);  } -static DEFINE_CLOCK_DATA(cd);  static void __iomem *sched_io_base; -unsigned long long notrace sched_clock(void) +unsigned u32 notrace picoxcell_read_sched_clock(void)  { -	cycle_t cyc = sched_io_base ? __raw_readl(sched_io_base) : 0; - -	return cyc_to_sched_clock(&cd, cyc, (u32)~0); -} - -static void notrace picoxcell_update_sched_clock(void) -{ -	cycle_t cyc = sched_io_base ? __raw_readl(sched_io_base) : 0; - -	update_sched_clock(&cd, cyc, (u32)~0); +	return __raw_readl(sched_io_base);  }  static const struct of_device_id picoxcell_rtc_ids[] __initconst = { @@ -100,7 +89,7 @@ static void picoxcell_init_sched_clock(void)  	timer_get_base_and_rate(sched_timer, &sched_io_base, &rate);  	of_node_put(sched_timer); -	init_sched_clock(&cd, picoxcell_update_sched_clock, 32, rate); +	setup_sched_clock(picoxcell_read_sched_clock, 32, rate);  }  static const struct of_device_id picoxcell_timer_ids[] __initconst = {  |