Changeset 6cd9aa6 in mainline for kernel/arch/ia64/src/interrupt.c


Ignore:
Timestamp:
2009-02-15T23:13:55Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
17f168e
Parents:
fa09449
Message:

IRQ handlers are using one superfluous argument and an unused elipsis.
On the other hand, IRQ claim functions would need to be passed the instance
argument.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/interrupt.c

    rfa09449 r6cd9aa6  
    267267                irq = irq_dispatch_and_lock(ivr.vector);
    268268                if (irq) {
    269                         irq->handler(irq, irq->arg);
     269                        irq->handler(irq);
    270270                        spinlock_unlock(&irq->lock);
    271271                } else {
     
    284284                                end_of_local_irq();
    285285                        }
    286                         irq->handler(irq, irq->arg);
     286                        irq->handler(irq);
    287287                        if (!irq->preack)
    288288                                end_of_local_irq();
Note: See TracChangeset for help on using the changeset viewer.