Changeset 9b56a8dd in mainline for uspace/drv/char/ps2mouse/main.c


Ignore:
Timestamp:
2011-12-26T19:53:31Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4005e37a
Parents:
b39eb79
Message:

i8042, ps2mouse, xtkbd:Drop newlines at the end of ddf_msg messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/ps2mouse/main.c

    rb39eb79 r9b56a8dd  
    9090        ps2_mouse_t *mouse = ddf_dev_data_alloc(device, sizeof(ps2_mouse_t));
    9191        int ret = (mouse == NULL) ? ENOMEM : EOK;
    92         CHECK_RET_RETURN(ret, "Failed to allocate mouse driver instance.\n");
     92        CHECK_RET_RETURN(ret, "Failed to allocate mouse driver instance.");
    9393
    9494        ret = ps2_mouse_init(mouse, device);
    9595        CHECK_RET_RETURN(ret,
    96             "Failed to initialize mouse driver: %s.\n", str_error(ret));
     96            "Failed to initialize mouse driver: %s.", str_error(ret));
    9797
    98         ddf_msg(LVL_NOTE, "Controlling '%s' (%" PRIun ").\n",
     98        ddf_msg(LVL_NOTE, "Controlling '%s' (%" PRIun ").",
    9999            device->name, device->handle);
    100100        return EOK;
Note: See TracChangeset for help on using the changeset viewer.