Subversion Repositories HelenOS

Rev

Rev 3493 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3493 Rev 3665
Line 85... Line 85...
85
    if (irq) {
85
    if (irq) {
86
        /*
86
        /*
87
         * The IRQ handler was found.
87
         * The IRQ handler was found.
88
         */
88
         */
89
        irq->handler(irq, irq->arg);
89
        irq->handler(irq, irq->arg);
-
 
90
        /*
-
 
91
         * See if there is a clear-interrupt-routine and call it.
-
 
92
         */
-
 
93
        if (irq->cir) {
-
 
94
            irq->cir(irq->cir_arg, irq->inr);
-
 
95
        }
90
        spinlock_unlock(&irq->lock);
96
        spinlock_unlock(&irq->lock);
91
    } else if (data0 > config.base) {
97
    } else if (data0 > config.base) {
92
        /*
98
        /*
93
         * This is a cross-call.
99
         * This is a cross-call.
94
         * data0 contains address of the kernel function.
100
         * data0 contains address of the kernel function.