diff options
| author | Stephen Warren <swarren@wwwdotorg.org> | 2013-01-14 21:44:27 -0700 | 
|---|---|---|
| committer | Stephen Warren <swarren@wwwdotorg.org> | 2013-01-14 21:44:27 -0700 | 
| commit | b2fc382aad0a8f52803acdc3ac4e5540dbcdf1f6 (patch) | |
| tree | ed79658afd978b1e52ace0fb58d1628b79c0f78b /arch/arm/mach-netx/time.c | |
| parent | 9931faca02c604c22335f5a935a501bb2ace6e20 (diff) | |
| parent | 90cf214d6a549bf482e3c5751ee256cc885b96ea (diff) | |
| download | olio-linux-3.10-b2fc382aad0a8f52803acdc3ac4e5540dbcdf1f6.tar.xz olio-linux-3.10-b2fc382aad0a8f52803acdc3ac4e5540dbcdf1f6.zip  | |
Merge remote-tracking branch 'korg_arm-soc/timer/cleanup' into cleanup
Diffstat (limited to 'arch/arm/mach-netx/time.c')
| -rw-r--r-- | arch/arm/mach-netx/time.c | 6 | 
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/mach-netx/time.c b/arch/arm/mach-netx/time.c index e24c141ba48..0dee4524494 100644 --- a/arch/arm/mach-netx/time.c +++ b/arch/arm/mach-netx/time.c @@ -107,7 +107,7 @@ static struct irqaction netx_timer_irq = {  /*   * Set up timer interrupt   */ -static void __init netx_timer_init(void) +void __init netx_timer_init(void)  {  	/* disable timer initially */  	writel(0, NETX_GPIO_COUNTER_CTRL(0)); @@ -151,7 +151,3 @@ static void __init netx_timer_init(void)  	netx_clockevent.cpumask = cpumask_of(0);  	clockevents_register_device(&netx_clockevent);  } - -struct sys_timer netx_timer = { -	.init		= netx_timer_init, -};  |