Changeset 228e490 in mainline for uspace/srv/hid/fb/fb.c


Ignore:
Timestamp:
2010-12-14T17:00:02Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a9b6bec, eb221e5
Parents:
dd8d5a7
Message:

initial modifications for supporting declarative IPC interfaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/fb/fb.c

    rdd8d5a7 r228e490  
    10831083        unsigned int h;
    10841084       
    1085         switch (IPC_GET_METHOD(*call)) {
     1085        switch (IPC_GET_IMETHOD(*call)) {
    10861086        case IPC_M_SHARE_OUT:
    10871087                /* We accept one area for data interchange */
     
    13601360        int newval;
    13611361       
    1362         switch (IPC_GET_METHOD(*call)) {
     1362        switch (IPC_GET_IMETHOD(*call)) {
    13631363        case FB_ANIM_CREATE:
    13641364                nvp = IPC_GET_ARG1(*call);
     
    14351435                        break;
    14361436                }
    1437                 newval = (IPC_GET_METHOD(*call) == FB_ANIM_START);
     1437                newval = (IPC_GET_IMETHOD(*call) == FB_ANIM_START);
    14381438                if (newval ^ animations[i].enabled) {
    14391439                        animations[i].enabled = newval;
     
    14591459        int i, nvp;
    14601460       
    1461         switch (IPC_GET_METHOD(*call)) {
     1461        switch (IPC_GET_IMETHOD(*call)) {
    14621462        case FB_VP_DRAW_PIXMAP:
    14631463                nvp = IPC_GET_ARG1(*call);
     
    16211621                        continue;
    16221622               
    1623                 switch (IPC_GET_METHOD(call)) {
     1623                switch (IPC_GET_IMETHOD(call)) {
    16241624                case IPC_M_PHONE_HUNGUP:
    16251625                        client_connected = false;
Note: See TracChangeset for help on using the changeset viewer.