Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/audio_device.c

    r47b2d7e3 r1433ecda  
    5454static errno_t device_source_connection_callback(audio_source_t *source, bool new);
    5555static void device_event_callback(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg);
    56 static errno_t device_check_format(audio_sink_t* sink);
     56static errno_t device_check_format(audio_sink_t *sink);
    5757static errno_t get_buffer(audio_device_t *dev);
    5858static errno_t release_buffer(audio_device_t *dev);
     
    118118 *         capable of capturing audio.
    119119 */
    120 audio_source_t * audio_device_get_source(audio_device_t *dev)
     120audio_source_t *audio_device_get_source(audio_device_t *dev)
    121121{
    122122        assert(dev);
     
    134134 *         capable of audio playback.
    135135 */
    136 audio_sink_t * audio_device_get_sink(audio_device_t *dev)
     136audio_sink_t *audio_device_get_sink(audio_device_t *dev)
    137137{
    138138        assert(dev);
     
    153153 * connections.
    154154 */
    155 static errno_t device_sink_connection_callback(audio_sink_t* sink, bool new)
     155static errno_t device_sink_connection_callback(audio_sink_t *sink, bool new)
    156156{
    157157        assert(sink);
     
    275275                cap_call_handle_t chandle = async_get_call(&call);
    276276                async_answer_0(chandle, EOK);
    277                 switch(IPC_GET_IMETHOD(call)) {
     277                switch (IPC_GET_IMETHOD(call)) {
    278278                case PCM_EVENT_FRAMES_PLAYED:
    279279                        getuptime(&time1);
     
    327327 * @return Error code.
    328328 */
    329 static errno_t device_check_format(audio_sink_t* sink)
     329static errno_t device_check_format(audio_sink_t *sink)
    330330{
    331331        assert(sink);
Note: See TracChangeset for help on using the changeset viewer.