Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2097 → Rev 2098

/trunk/kernel/generic/src/ipc/irq.c
282,7 → 282,7
IPC_SET_ARG2(call->data, a2);
IPC_SET_ARG3(call->data, a3);
/* Put a counter to the message */
call->private = ++irq->notif_cfg.counter;
call->priv = ++irq->notif_cfg.counter;
send_call(irq, call);
}
306,7 → 306,7
}
call->flags |= IPC_CALL_NOTIF;
/* Put a counter to the message */
call->private = ++irq->notif_cfg.counter;
call->priv = ++irq->notif_cfg.counter;
/* Set up args */
IPC_SET_METHOD(call->data, irq->notif_cfg.method);