Changeset 6c2aba3 in mainline for uspace/srv/hid/display/input.c


Ignore:
Timestamp:
2020-02-19T17:04:40Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1388f7f0
Parents:
0a052b0
Message:

Tone down on message verbosity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/input.c

    r0a052b0 r6c2aba3  
    7474        kbd_event_t event;
    7575
    76         printf("ds_input_ev_key\n");
    7776        event.type = type;
    7877        event.key = key;
     
    8887        ptd_event_t event;
    8988
    90         printf("ds_input_ev_move\n");
    9189        event.type = PTD_MOVE;
    9290        event.dmove.x = dx;
     
    109107        ptd_event_t event;
    110108
    111         printf("ds_input_ev_abs_button\n");
    112109        event.type = bpress ? PTD_PRESS : PTD_RELEASE;
    113110        event.btn_num = bnum;
     
    129126        const char *svc = "hid/input";
    130127
    131         printf("ds_input_open\n");
    132128        errno_t rc = loc_service_get_id(svc, &dsid, 0);
    133129        if (rc != EOK) {
     
    153149
    154150        input_activate(display->input);
    155         printf("ds_input_open: DONE\n");
    156151        return EOK;
    157152}
Note: See TracChangeset for help on using the changeset viewer.