Changeset 6feb444 in mainline


Ignore:
Timestamp:
2016-12-10T12:43:24Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c4e30607
Parents:
47c1437
Message:

Fix cstyle

File:
1 edited

Legend:

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

    r47c1437 r6feb444  
    401401               
    402402                switch (IPC_GET_IMETHOD(call)) {
    403                         case OUTPUT_YIELD:
    404                                 srv_yield(callid, &call);
    405                                 break;
    406                         case OUTPUT_CLAIM:
    407                                 srv_claim(callid, &call);
    408                                 break;
    409                         case OUTPUT_GET_DIMENSIONS:
    410                                 srv_get_dimensions(callid, &call);
    411                                 break;
    412                         case OUTPUT_GET_CAPS:
    413                                 srv_get_caps(callid, &call);
    414                                 break;
    415                        
    416                         case OUTPUT_FRONTBUF_CREATE:
    417                                 srv_frontbuf_create(callid, &call);
    418                                 break;
    419                         case OUTPUT_FRONTBUF_DESTROY:
    420                                 srv_frontbuf_destroy(callid, &call);
    421                                 break;
    422                        
    423                         case OUTPUT_CURSOR_UPDATE:
    424                                 srv_cursor_update(callid, &call);
    425                                 break;
    426                         case OUTPUT_SET_STYLE:
    427                                 srv_set_style(callid, &call);
    428                                 break;
    429                         case OUTPUT_SET_COLOR:
    430                                 srv_set_color(callid, &call);
    431                                 break;
    432                         case OUTPUT_SET_RGB_COLOR:
    433                                 srv_set_rgb_color(callid, &call);
    434                                 break;
    435                         case OUTPUT_UPDATE:
    436                                 srv_update(callid, &call);
    437                                 break;
    438                         case OUTPUT_DAMAGE:
    439                                 srv_damage(callid, &call);
    440                                 break;
    441                        
    442                         default:
    443                                 async_answer_0(callid, EINVAL);
     403                case OUTPUT_YIELD:
     404                        srv_yield(callid, &call);
     405                        break;
     406                case OUTPUT_CLAIM:
     407                        srv_claim(callid, &call);
     408                        break;
     409                case OUTPUT_GET_DIMENSIONS:
     410                        srv_get_dimensions(callid, &call);
     411                        break;
     412                case OUTPUT_GET_CAPS:
     413                        srv_get_caps(callid, &call);
     414                        break;
     415               
     416                case OUTPUT_FRONTBUF_CREATE:
     417                        srv_frontbuf_create(callid, &call);
     418                        break;
     419                case OUTPUT_FRONTBUF_DESTROY:
     420                        srv_frontbuf_destroy(callid, &call);
     421                        break;
     422                       
     423                case OUTPUT_CURSOR_UPDATE:
     424                        srv_cursor_update(callid, &call);
     425                        break;
     426                case OUTPUT_SET_STYLE:
     427                        srv_set_style(callid, &call);
     428                        break;
     429                case OUTPUT_SET_COLOR:
     430                        srv_set_color(callid, &call);
     431                        break;
     432                case OUTPUT_SET_RGB_COLOR:
     433                        srv_set_rgb_color(callid, &call);
     434                        break;
     435                case OUTPUT_UPDATE:
     436                        srv_update(callid, &call);
     437                        break;
     438                case OUTPUT_DAMAGE:
     439                        srv_damage(callid, &call);
     440                        break;
     441                       
     442                default:
     443                        async_answer_0(callid, EINVAL);
    444444                }
    445445        }
Note: See TracChangeset for help on using the changeset viewer.