Hi, there.

I used ppc8260 cpm timer as followings:

void  init_timer()
{
    ...
    request_8xxirq(SIU_INT_TIMER1, handler, 0, "TIMER", NULL);
    enable_irq(SIU_INT_TIMER1);
    ...
}

void stop_timer()
{
    disable_irq(SIU_INT_TIMER1);
    free_irq(SIU_INT_TIMER1, NULL);
}

I called init_timer() after loading module and then called stop_timer()
after 10 seconds by user space program. It works well for first time
just after loading module and executing user space program. But it fails
from the next execution of user space program throwing 'enable_irq(12)
unbalanced' error. I mean interrupt won't occur.

What's wrong? What should I do to disable timer interrupt to avoid above
error?

Thanks.

willy.

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/



Reply via email to