Skip to content

Commit

Permalink
[PATCH] ARM: footbridge rtc init
Browse files Browse the repository at this point in the history
The footbridge ISA RTC was being initialised before we had setup the
kernel timer.  This caused a divide by zero error when the current
time of day is set.  Resolve this by initialising the RTC after
the kernel timer has been initialised.

Signed-off-by: Russell King <rmk@arm.linux.org.uk>
  • Loading branch information
Russell King committed Apr 17, 2005
1 parent a757e64 commit 336eb02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-footbridge/dc21285-timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ static struct irqaction footbridge_timer_irq = {
*/
static void __init footbridge_timer_init(void)
{
isa_rtc_init();

timer1_latch = (mem_fclk_21285 + 8 * HZ) / (16 * HZ);

*CSR_TIMER1_CLR = 0;
*CSR_TIMER1_LOAD = timer1_latch;
*CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_AUTORELOAD | TIMER_CNTL_DIV16;

setup_irq(IRQ_TIMER1, &footbridge_timer_irq);

isa_rtc_init();
}

struct sys_timer footbridge_timer = {
Expand Down

0 comments on commit 336eb02

Please sign in to comment.