Ignore:
File:
1 edited

Legend:

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

    re882e3a rb2010e2  
    6969{
    7070        printf(NAME ": HelenOS ps/2 mouse driver.\n");
    71         ddf_log_init(NAME, LVL_NOTE);
     71        ddf_log_init(NAME);
    7272        return ddf_driver_main(&mouse_driver);
    7373}
     
    8080static int mouse_add(ddf_dev_t *device)
    8181{
     82        int rc;
     83
    8284        if (!device)
    8385                return EINVAL;
    8486
    85 #define CHECK_RET_RETURN(ret, message...) \
    86 if (ret != EOK) { \
    87         ddf_msg(LVL_ERROR, message); \
    88         return ret; \
    89 } else (void)0
     87        ps2_mouse_t *mouse = ddf_dev_data_alloc(device, sizeof(ps2_mouse_t));
     88        if (mouse == NULL) {
     89                ddf_msg(LVL_ERROR, "Failed to allocate mouse driver instance.");
     90                return ENOMEM;
     91        }
    9092
    91         ps2_mouse_t *mouse = ddf_dev_data_alloc(device, sizeof(ps2_mouse_t));
    92         int ret = (mouse == NULL) ? ENOMEM : EOK;
    93         CHECK_RET_RETURN(ret, "Failed to allocate mouse driver instance.");
    94 
    95         ret = ps2_mouse_init(mouse, device);
    96         CHECK_RET_RETURN(ret,
    97             "Failed to initialize mouse driver: %s.", str_error(ret));
     93        rc = ps2_mouse_init(mouse, device);
     94        if (rc != EOK) {
     95                ddf_msg(LVL_ERROR, "Failed to initialize mouse driver: %s.",
     96                    str_error(rc));
     97                return rc;
     98        }
    9899
    99100        ddf_msg(LVL_NOTE, "Controlling '%s' (%" PRIun ").",
    100             device->name, device->handle);
     101            ddf_dev_get_name(device), ddf_dev_get_handle(device));
    101102        return EOK;
    102103}
Note: See TracChangeset for help on using the changeset viewer.