Changeset 8add9ca5 in mainline for uspace/lib/c/generic/ddi.c


Ignore:
Timestamp:
2011-01-29T11:52:53Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4f14e1f8
Parents:
46b881c
Message:

ABI change: syscalls for registering IRQ notifications are probably more DDI-related than IPC-related

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/ddi.c

    r46b881c r8add9ca5  
    139139int register_irq(int inr, int devno, int method, irq_code_t *ucode)
    140140{
    141         return __SYSCALL4(SYS_IPC_REGISTER_IRQ, inr, devno, method,
     141        return __SYSCALL4(SYS_REGISTER_IRQ, inr, devno, method,
    142142            (sysarg_t) ucode);
    143143}
     
    153153int unregister_irq(int inr, int devno)
    154154{
    155         return __SYSCALL2(SYS_IPC_UNREGISTER_IRQ, inr, devno);
     155        return __SYSCALL2(SYS_UNREGISTER_IRQ, inr, devno);
    156156}
    157157
Note: See TracChangeset for help on using the changeset viewer.