Changeset 571ba2a in mainline


Ignore:
Timestamp:
2011-10-14T15:00:05Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
af8c9b54
Parents:
7b54b99
Message:

usbhid: more whitespace fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbhid/multimedia/multimedia.c

    r7b54b99 r571ba2a  
    6464        //int32_t *keys;
    6565        /** Count of stored keys (i.e. number of keys in the report). */
    66         //size_t key_count;     
     66        //size_t key_count;
    6767        /** IPC session to the console device (for sending key events). */
    6868        async_sess_t *console_sess;
     
    8686{
    8787        usb_log_debug(NAME " default_connection_handler()\n");
    88        
     88
    8989        usb_multimedia_t *multim_dev = (usb_multimedia_t *)fun->driver_data;
    90        
     90
    9191        if (multim_dev == NULL) {
    9292                async_answer_0(icallid, EINVAL);
    9393                return;
    9494        }
    95        
     95
    9696        async_sess_t *sess =
    9797            async_callback_receive_start(EXCHANGE_SERIALIZE, icall);
     
    137137        assert(hid_dev != NULL);
    138138        assert(multim_dev != NULL);
    139        
     139
    140140        kbd_event_t ev;
    141        
     141
    142142        ev.type = type;
    143143        ev.key = key;
     
    151151                return;
    152152        }
    153        
     153
    154154        async_exch_t *exch = async_exchange_begin(multim_dev->console_sess);
    155155        async_msg_4(exch, KBDEV_EVENT, ev.type, ev.key, ev.mods, ev.c);
     
    169169                return ENOMEM;
    170170        }
    171        
     171
    172172        fun->ops = &multimedia_ops;
    173173        fun->driver_data = multim_dev;   // TODO: maybe change to hid_dev->data
    174        
     174
    175175        int rc = ddf_fun_bind(fun);
    176176        if (rc != EOK) {
    177177                usb_log_error("Could not bind DDF function: %s.\n",
    178178                    str_error(rc));
    179                 // TODO: Can / should I destroy the DDF function?
    180179                ddf_fun_destroy(fun);
    181180                return rc;
    182181        }
    183        
     182
    184183        usb_log_debug("%s function created (handle: %" PRIun ").\n",
    185184            NAME, fun->handle);
    186        
     185
    187186        rc = ddf_fun_add_to_category(fun, "keyboard");
    188187        if (rc != EOK) {
     
    190189                    "Could not add DDF function to category 'keyboard': %s.\n",
    191190                    str_error(rc));
    192                 // TODO: Can / should I destroy the DDF function?
    193191                ddf_fun_destroy(fun);
    194192                return rc;
    195193        }
    196        
     194
    197195        return EOK;
    198196}
     
    205203                return EINVAL; /*! @todo Other return code? */
    206204        }
    207        
     205
    208206        usb_log_debug(NAME " Initializing HID/multimedia structure...\n");
    209        
     207
    210208        usb_multimedia_t *multim_dev = (usb_multimedia_t *)malloc(
    211209            sizeof(usb_multimedia_t));
     
    213211                return ENOMEM;
    214212        }
    215        
     213
    216214        multim_dev->console_sess = NULL;
    217        
     215
    218216        /*! @todo Autorepeat */
    219        
     217
    220218        // save the KBD device structure into the HID device structure
    221219        *data = multim_dev;
    222        
     220
    223221        usb_log_debug(NAME " HID/multimedia device structure initialized.\n");
    224        
     222
    225223        int rc = usb_multimedia_create_function(hid_dev, multim_dev);
    226224        if (rc != EOK)
    227225                return rc;
    228        
     226
    229227        usb_log_debug(NAME " HID/multimedia structure initialized.\n");
    230        
     228
    231229        return EOK;
    232230}
     
    239237                return;
    240238        }
    241        
     239
    242240        if (data != NULL) {
    243241                usb_multimedia_t *multim_dev = (usb_multimedia_t *)data;
     
    257255
    258256        usb_multimedia_t *multim_dev = (usb_multimedia_t *)data;
    259        
     257
    260258        usb_hid_report_path_t *path = usb_hid_report_path();
    261259        usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_CONSUMER, 0);
     
    283281                                               key);
    284282                }
    285                
     283
    286284                field = usb_hid_report_get_sibling(
    287285                    hid_dev->report, field, path, USB_HID_PATH_COMPARE_END
    288286                    | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
    289287                    USB_HID_REPORT_TYPE_INPUT);
    290         }       
     288        }
    291289
    292290        usb_hid_report_path_free(path);
    293        
     291
    294292        return true;
    295293}
Note: See TracChangeset for help on using the changeset viewer.