Changeset 6cd9aa6 in mainline for kernel/arch/ia32/src/drivers/i8254.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/ia32/src/drivers/i8254.c

    rfa09449 r6cd9aa6  
    6262static irq_t i8254_irq;
    6363
    64 static irq_ownership_t i8254_claim(void)
     64static irq_ownership_t i8254_claim(void *instance)
    6565{
    6666        return IRQ_ACCEPT;
    6767}
    6868
    69 static void i8254_irq_handler(irq_t *irq, void *arg __attribute__((unused)), ...)
     69static void i8254_irq_handler(irq_t *irq)
    7070{
    7171        /*
Note: See TracChangeset for help on using the changeset viewer.