~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to uspace/lib/c/generic/ddi.c

  • Committer: Martin Decky
  • Date: 2011-01-29 11:52:53 UTC
  • mto: This revision was merged to the branch mainline in revision 841.
  • Revision ID: martin@ares.decky.cz-20110129115253-950okfpdaii53cp2
ABI change: syscalls for registering IRQ notifications are probably more DDI-related than IPC-related

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
 */
139
139
int register_irq(int inr, int devno, int method, irq_code_t *ucode)
140
140
{
141
 
        return __SYSCALL4(SYS_IPC_REGISTER_IRQ, inr, devno, method,
 
141
        return __SYSCALL4(SYS_REGISTER_IRQ, inr, devno, method,
142
142
            (sysarg_t) ucode);
143
143
}
144
144
 
152
152
 */
153
153
int unregister_irq(int inr, int devno)
154
154
{
155
 
        return __SYSCALL2(SYS_IPC_UNREGISTER_IRQ, inr, devno);
 
155
        return __SYSCALL2(SYS_UNREGISTER_IRQ, inr, devno);
156
156
}
157
157
 
158
158
/** @}