Changeset 3bacee1 in mainline for uspace/lib/usbdev/src/devdrv.c


Ignore:
Timestamp:
2018-04-12T16:27:17Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3cf22f9
Parents:
76d0981d
git-author:
Jiri Svoboda <jiri@…> (2018-04-11 19:25:33)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-12 16:27:17)
Message:

Make ccheck-fix again and commit more good files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/src/devdrv.c

    r76d0981d r3bacee1  
    394394}
    395395
    396 const usb_alternate_interfaces_t * usb_device_get_alternative_ifaces(
     396const usb_alternate_interfaces_t *usb_device_get_alternative_ifaces(
    397397    usb_device_t *usb_dev)
    398398{
     
    547547}
    548548
    549 usb_device_t * usb_device_create(devman_handle_t handle)
     549usb_device_t *usb_device_create(devman_handle_t handle)
    550550{
    551551        usb_device_t *usb_dev = malloc(sizeof(usb_device_t));
     
    562562        }
    563563
    564         const char* dummy = NULL;
     564        const char *dummy = NULL;
    565565        ret = usb_device_init(usb_dev, NULL, NULL, &dummy);
    566566        if (ret != EOK) {
     
    588588
    589589ddf_fun_t *usb_device_ddf_fun_create(usb_device_t *usb_dev, fun_type_t ftype,
    590     const char* name)
     590    const char *name)
    591591{
    592592        assert(usb_dev);
     
    596596}
    597597
    598 async_exch_t * usb_device_bus_exchange_begin(usb_device_t *usb_dev)
     598async_exch_t *usb_device_bus_exchange_begin(usb_device_t *usb_dev)
    599599{
    600600        assert(usb_dev);
     
    612612 * @return Pointer to the newly allocated space, NULL on failure.
    613613 */
    614 void * usb_device_data_alloc(usb_device_t *usb_dev, size_t size)
     614void *usb_device_data_alloc(usb_device_t *usb_dev, size_t size)
    615615{
    616616        assert(usb_dev);
     
    620620}
    621621
    622 void * usb_device_data_get(usb_device_t *usb_dev)
     622void *usb_device_data_get(usb_device_t *usb_dev)
    623623{
    624624        assert(usb_dev);
Note: See TracChangeset for help on using the changeset viewer.