Changeset 09ab0a9a in mainline for uspace/lib/usbdev


Ignore:
Timestamp:
2018-09-13T12:05:53Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc74cb5
Parents:
b2aaaa0
git-author:
Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
git-committer:
Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
Message:

Fix vertical spacing with new Ccheck revision.

Location:
uspace/lib/usbdev
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/include/usb/dev/poll.h

    rb2aaaa0 r09ab0a9a  
    4646#include <fibril_synch.h>
    4747
    48 
    4948/** USB automated polling. */
    5049typedef struct usb_polling {
     
    7675        bool (*on_data)(usb_device_t *dev, uint8_t *data, size_t data_size,
    7776            void *arg);
    78 
    7977
    8078        /**
     
    127125        bool (*on_error)(usb_device_t *dev, errno_t err_code, void *arg);
    128126
    129 
    130127        /**
    131128         * Internal parameters - user is not expected to set them. Messing with
  • uspace/lib/usbdev/src/altiface.c

    rb2aaaa0 r09ab0a9a  
    126126        };
    127127
    128 
    129128        const void *iface_ptr =
    130129            usb_dp_get_nested_descriptor(&dp_parser, &dp_data, dp_data.data);
  • uspace/lib/usbdev/src/devdrv.c

    rb2aaaa0 r09ab0a9a  
    194194            &usb_dev->descriptors.full_config,
    195195            &usb_dev->descriptors.full_config_size);
    196 
    197196
    198197        return rc;
  • uspace/lib/usbdev/src/devpoll.c

    rb2aaaa0 r09ab0a9a  
    5555#include <stdint.h>
    5656
    57 
    5857/** Initialize the polling data structure, its internals and configuration
    5958 *  with default values.
     
    8382}
    8483
    85 
    8684/** Destroy the polling data structure.
    8785 *  This function does nothing but a safety check whether the polling
     
    9694        assert(!polling->running);
    9795}
    98 
    9996
    10097/** Polling fibril.
     
    219216}
    220217
    221 
    222218/** Start automatic device polling over interrupt in pipe.
    223219 *
  • uspace/lib/usbdev/src/driver.c

    rb2aaaa0 r09ab0a9a  
    163163};
    164164
    165 
    166165/** Main routine of USB device driver.
    167166 *
  • uspace/lib/usbdev/src/recognise.c

    rb2aaaa0 r09ab0a9a  
    253253}
    254254
    255 
    256255/** Create match ids describing attached device.
    257256 *
  • uspace/lib/usbdev/src/request.c

    rb2aaaa0 r09ab0a9a  
    801801        string_chars[string_char_count] = 0;
    802802
    803 
    804803        /* Convert to normal string. */
    805804        char *str = wstr_to_astr(string_chars);
Note: See TracChangeset for help on using the changeset viewer.