diff options
Diffstat (limited to 'arch/arm/mach-shark/core.c')
| -rw-r--r-- | arch/arm/mach-shark/core.c | 6 | 
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/mach-shark/core.c b/arch/arm/mach-shark/core.c index 9ad2e9737fb..b63dec84819 100644 --- a/arch/arm/mach-shark/core.c +++ b/arch/arm/mach-shark/core.c @@ -128,10 +128,6 @@ static void __init shark_timer_init(void)  	setup_irq(IRQ_TIMER, &shark_timer_irq);  } -static struct sys_timer shark_timer = { -	.init		= shark_timer_init, -}; -  static void shark_init_early(void)  {  	disable_hlt(); @@ -142,7 +138,7 @@ MACHINE_START(SHARK, "Shark")  	.atag_offset	= 0x3000,  	.init_early	= shark_init_early,  	.init_irq	= shark_init_irq, -	.timer		= &shark_timer, +	.init_time	= shark_timer_init,  	.dma_zone_size	= SZ_4M,  	.restart	= shark_restart,  MACHINE_END  |