Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/hid/usbhid/multimedia/multimedia.c

    r5a6cc679 rb7fd2a0  
    8686    ipc_callid_t icallid, ipc_call_t *icall)
    8787{
    88         usb_log_debug(NAME " default_connection_handler()");
     88        usb_log_debug(NAME " default_connection_handler()\n");
    8989
    9090        usb_multimedia_t *multim_dev = ddf_fun_data_get(fun);
     
    9595                if (multim_dev->console_sess == NULL) {
    9696                        multim_dev->console_sess = sess;
    97                         usb_log_debug(NAME " Saved session to console: %p",
     97                        usb_log_debug(NAME " Saved session to console: %p\n",
    9898                            sess);
    9999                        async_answer_0(icallid, EOK);
     
    137137        };
    138138
    139         usb_log_debug2(NAME " Sending key %d to the console", ev.key);
     139        usb_log_debug2(NAME " Sending key %d to the console\n", ev.key);
    140140        if (multim_dev->console_sess == NULL) {
    141141                usb_log_warning(
     
    149149                async_exchange_end(exch);
    150150        } else {
    151                 usb_log_warning("Failed to send multimedia key.");
     151                usb_log_warning("Failed to send multimedia key.\n");
    152152        }
    153153}
     
    159159        }
    160160
    161         usb_log_debug(NAME " Initializing HID/multimedia structure...");
     161        usb_log_debug(NAME " Initializing HID/multimedia structure...\n");
    162162
    163163        /* Create the exposed function. */
     
    165165            hid_dev->usb_dev, fun_exposed, NAME);
    166166        if (fun == NULL) {
    167                 usb_log_error("Could not create DDF function node.");
     167                usb_log_error("Could not create DDF function node.\n");
    168168                return ENOMEM;
    169169        }
     
    184184        errno_t rc = ddf_fun_bind(fun);
    185185        if (rc != EOK) {
    186                 usb_log_error("Could not bind DDF function: %s.",
     186                usb_log_error("Could not bind DDF function: %s.\n",
    187187                    str_error(rc));
    188188                ddf_fun_destroy(fun);
     
    190190        }
    191191
    192         usb_log_debug(NAME " function created (handle: %" PRIun ").",
     192        usb_log_debug(NAME " function created (handle: %" PRIun ").\n",
    193193            ddf_fun_get_handle(fun));
    194194
     
    199199                    str_error(rc));
    200200                if (ddf_fun_unbind(fun) != EOK) {
    201                         usb_log_error("Failed to unbind %s, won't destroy.",
     201                        usb_log_error("Failed to unbind %s, won't destroy.\n",
    202202                            ddf_fun_get_name(fun));
    203203                } else {
     
    210210        *data = fun;
    211211
    212         usb_log_debug(NAME " HID/multimedia structure initialized.");
     212        usb_log_debug(NAME " HID/multimedia structure initialized.\n");
    213213        return EOK;
    214214}
     
    224224                async_hangup(multim_dev->console_sess);
    225225        if (ddf_fun_unbind(fun) != EOK) {
    226                 usb_log_error("Failed to unbind %s, won't destroy.",
     226                usb_log_error("Failed to unbind %s, won't destroy.\n",
    227227                    ddf_fun_get_name(fun));
    228228        } else {
    229                 usb_log_debug2("%s unbound.", ddf_fun_get_name(fun));
     229                usb_log_debug2("%s unbound.\n", ddf_fun_get_name(fun));
    230230                /* This frees multim_dev too as it was stored in
    231231                 * fun->data */
     
    266266        while (field != NULL) {
    267267                if (field->value != 0) {
    268                         usb_log_debug(NAME " KEY VALUE(%X) USAGE(%X)",
     268                        usb_log_debug(NAME " KEY VALUE(%X) USAGE(%X)\n",
    269269                            field->value, field->usage);
    270270                        const unsigned key =
     
    272272                        const char *key_str =
    273273                            usbhid_multimedia_usage_to_str(field->usage);
    274                         usb_log_info("Pressed key: %s", key_str);
     274                        usb_log_info("Pressed key: %s\n", key_str);
    275275                        usb_multimedia_push_ev(multim_dev, KEY_PRESS, key);
    276276                }
Note: See TracChangeset for help on using the changeset viewer.