Changeset 0c1a5d8a in mainline for kernel/generic/src/ipc/irq.c


Ignore:
Timestamp:
2007-01-29T18:07:28Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b1349e0
Parents:
c27c988
Message:

avoid conflict with potential keyword

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/irq.c

    rc27c988 r0c1a5d8a  
    283283                IPC_SET_ARG3(call->data, a3);
    284284                /* Put a counter to the message */
    285                 call->private = ++irq->notif_cfg.counter;
     285                call->priv = ++irq->notif_cfg.counter;
    286286               
    287287                send_call(irq, call);
     
    307307                call->flags |= IPC_CALL_NOTIF;
    308308                /* Put a counter to the message */
    309                 call->private = ++irq->notif_cfg.counter;
     309                call->priv = ++irq->notif_cfg.counter;
    310310                /* Set up args */
    311311                IPC_SET_METHOD(call->data, irq->notif_cfg.method);
Note: See TracChangeset for help on using the changeset viewer.