Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbhid/kbd/kbddev.h

    rcddd151 r5da7199  
    7575        /** Currently pressed modifiers (bitmap). */
    7676        uint8_t modifiers;
    77 
     77       
    7878        /** Currently active modifiers including locks. Sent to the console. */
    7979        unsigned mods;
    80 
     80       
    8181        /** Currently active lock keys. */
    8282        unsigned lock_keys;
    83 
     83       
    8484        /** IPC session to the console device (for sending key events). */
    8585        async_sess_t *console_sess;
    86 
     86       
    8787        /** @todo What is this actually? */
    8888        ddf_dev_ops_t ops;
    89 
     89       
    9090        /** Information for auto-repeat of keys. */
    9191        usb_kbd_repeat_t repeat;
    92 
     92       
    9393        /** Mutex for accessing the information about auto-repeat. */
    94         fibril_mutex_t repeat_mtx;
    95 
     94        fibril_mutex_t *repeat_mtx;
     95       
    9696        uint8_t *output_buffer;
    97 
     97       
    9898        size_t output_size;
    99 
     99       
    100100        size_t led_output_size;
    101 
     101       
    102102        usb_hid_report_path_t *led_path;
    103 
     103       
    104104        int32_t *led_data;
    105 
     105       
    106106        /** State of the structure (for checking before use).
    107107         *
     
    111111         */
    112112        int initialized;
    113 
    114         /** DDF function */
    115         ddf_fun_t *fun;
    116113} usb_kbd_t;
    117114
Note: See TracChangeset for help on using the changeset viewer.