Changeset 5b0cf63 in mainline for uspace/srv


Ignore:
Timestamp:
2018-01-25T13:42:08Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1ab3c4b
Parents:
c832ab15
git-author:
Jiri Svoboda <jiri@…> (2017-01-24 18:40:44)
git-committer:
Jiri Svoboda <jiri@…> (2018-01-25 13:42:08)
Message:

A round of cstyle fixing (i.e. run make ccheck-fix).

Location:
uspace/srv
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/hound.h

    rc832ab15 r5b0cf63  
    7070hound_ctx_t *hound_get_ctx_by_id(hound_t *hound, hound_context_id_t id);
    7171
    72 errno_t hound_add_device(hound_t *hound, service_id_t id, const char* name);
     72errno_t hound_add_device(hound_t *hound, service_id_t id, const char *name);
    7373errno_t hound_add_source(hound_t *hound, audio_source_t *source);
    7474errno_t hound_add_sink(hound_t *hound, audio_sink_t *sink);
     
    7979errno_t hound_remove_source(hound_t *hound, audio_source_t *source);
    8080errno_t hound_remove_sink(hound_t *hound, audio_sink_t *sink);
    81 errno_t hound_connect(hound_t *hound, const char* source_name, const char* sink_name);
    82 errno_t hound_disconnect(hound_t *hound, const char* source_name, const char* sink_name);
     81errno_t hound_connect(hound_t *hound, const char *source_name, const char *sink_name);
     82errno_t hound_disconnect(hound_t *hound, const char *source_name, const char *sink_name);
    8383
    8484#endif
  • uspace/srv/audio/hound/hound_ctx.h

    rc832ab15 r5b0cf63  
    6969
    7070hound_ctx_stream_t *hound_ctx_create_stream(hound_ctx_t *ctx, int flags,
    71         pcm_format_t format, size_t buffer_size);
     71    pcm_format_t format, size_t buffer_size);
    7272void hound_ctx_destroy_stream(hound_ctx_stream_t *stream);
    7373
  • uspace/srv/bd/vbd/disk.h

    rc832ab15 r5b0cf63  
    5252extern errno_t vbds_label_delete(service_id_t);
    5353extern errno_t vbds_part_get_info(vbds_part_id_t, vbd_part_info_t *);
    54 extern errno_t vbds_part_create(service_id_t, vbd_part_spec_t *,vbds_part_id_t *);
     54extern errno_t vbds_part_create(service_id_t, vbd_part_spec_t *, vbds_part_id_t *);
    5555extern errno_t vbds_part_delete(vbds_part_id_t);
    5656extern errno_t vbds_suggest_ptype(service_id_t, label_pcnt_t, label_ptype_t *);
  • uspace/srv/fs/exfat/exfat_bitmap.h

    rc832ab15 r5b0cf63  
    4242struct exfat_bs;
    4343
    44 extern errno_t exfat_bitmap_alloc_clusters(struct exfat_bs *, service_id_t, 
     44extern errno_t exfat_bitmap_alloc_clusters(struct exfat_bs *, service_id_t,
    4545    exfat_cluster_t *, exfat_cluster_t);
    46 extern errno_t exfat_bitmap_append_clusters(struct exfat_bs *, struct exfat_node *, 
     46extern errno_t exfat_bitmap_append_clusters(struct exfat_bs *, struct exfat_node *,
    4747    exfat_cluster_t);
    48 extern errno_t exfat_bitmap_free_clusters(struct exfat_bs *, struct exfat_node *, 
     48extern errno_t exfat_bitmap_free_clusters(struct exfat_bs *, struct exfat_node *,
    4949    exfat_cluster_t);
    50 extern errno_t exfat_bitmap_replicate_clusters(struct exfat_bs *, struct exfat_node *); 
     50extern errno_t exfat_bitmap_replicate_clusters(struct exfat_bs *, struct exfat_node *);
    5151
    5252extern errno_t exfat_bitmap_is_free(struct exfat_bs *, service_id_t, exfat_cluster_t);
    5353extern errno_t exfat_bitmap_set_cluster(struct exfat_bs *, service_id_t, exfat_cluster_t);
    54 extern errno_t exfat_bitmap_clear_cluster(struct exfat_bs *, service_id_t, 
     54extern errno_t exfat_bitmap_clear_cluster(struct exfat_bs *, service_id_t,
    5555    exfat_cluster_t);
    5656
    57 extern errno_t exfat_bitmap_set_clusters(struct exfat_bs *, service_id_t, 
     57extern errno_t exfat_bitmap_set_clusters(struct exfat_bs *, service_id_t,
    5858    exfat_cluster_t, exfat_cluster_t);
    59 extern errno_t exfat_bitmap_clear_clusters(struct exfat_bs *, service_id_t, 
     59extern errno_t exfat_bitmap_clear_clusters(struct exfat_bs *, service_id_t,
    6060    exfat_cluster_t, exfat_cluster_t);
    6161
  • uspace/srv/fs/exfat/exfat_directory.h

    rc832ab15 r5b0cf63  
    2929/** @addtogroup fs
    3030 * @{
    31  */ 
     31 */
    3232
    3333#ifndef EXFAT_EXFAT_DIRECTORY_H_
     
    6666extern errno_t exfat_directory_find(exfat_directory_t *, exfat_dentry_clsf_t,
    6767    exfat_dentry_t **);
    68 extern errno_t exfat_directory_find_continue(exfat_directory_t *, 
     68extern errno_t exfat_directory_find_continue(exfat_directory_t *,
    6969    exfat_dentry_clsf_t, exfat_dentry_t **);
    7070
  • uspace/srv/fs/exfat/exfat_fat.h

    rc832ab15 r5b0cf63  
    6161    exfat_cluster_walk((bs), (sid), (fc), NULL, (numc), (uint32_t) -1)
    6262
    63 extern errno_t exfat_cluster_walk(struct exfat_bs *, service_id_t, 
     63extern errno_t exfat_cluster_walk(struct exfat_bs *, service_id_t,
    6464    exfat_cluster_t, exfat_cluster_t *, uint32_t *, uint32_t);
    6565extern errno_t exfat_block_get(block_t **, struct exfat_bs *, struct exfat_node *,
  • uspace/srv/fs/fat/fat_directory.h

    rc832ab15 r5b0cf63  
    2929/** @addtogroup fs
    3030 * @{
    31  */ 
     31 */
    3232
    3333#ifndef FAT_FAT_DIRECTORY_H_
  • uspace/srv/fs/locfs/locfs.h

    rc832ab15 r5b0cf63  
    2929/** @addtogroup fs
    3030 * @{
    31  */ 
     31 */
    3232
    3333#ifndef LOCFS_LOCFS_H_
  • uspace/srv/hid/isdv4_tablet/isdv4.h

    rc832ab15 r5b0cf63  
    7474
    7575typedef enum {
    76         UNKNOWN, PRESS, RELEASE, PROXIMITY_IN, PROXIMITY_OUT, MOVE
     76        UNKNOWN,
     77        PRESS,
     78        RELEASE,
     79        PROXIMITY_IN,
     80        PROXIMITY_OUT,
     81        MOVE
    7782} isdv4_event_type_t;
    7883
    7984typedef enum {
    80         STYLUS_TIP, STYLUS_ERASER, TOUCH
     85        STYLUS_TIP,
     86        STYLUS_ERASER,
     87        TOUCH
    8188} isdv4_source_type_t;
    8289
  • uspace/srv/hid/output/output.h

    rc832ab15 r5b0cf63  
    4242
    4343typedef struct {
    44         errno_t (* yield)(struct outdev *dev);
    45         errno_t (* claim)(struct outdev *dev);
     44        errno_t (*yield)(struct outdev *dev);
     45        errno_t (*claim)(struct outdev *dev);
    4646       
    47         void (* get_dimensions)(struct outdev *dev, sysarg_t *cols,
     47        void (*get_dimensions)(struct outdev *dev, sysarg_t *cols,
    4848            sysarg_t *rows);
    49         console_caps_t (* get_caps)(struct outdev *dev);
     49        console_caps_t (*get_caps)(struct outdev *dev);
    5050       
    51         void (* cursor_update)(struct outdev *dev, sysarg_t prev_col,
     51        void (*cursor_update)(struct outdev *dev, sysarg_t prev_col,
    5252            sysarg_t prev_row, sysarg_t col, sysarg_t row, bool visible);
    53         void (* char_update)(struct outdev *dev, sysarg_t col, sysarg_t row);
    54         void (* flush)(struct outdev *dev);
     53        void (*char_update)(struct outdev *dev, sysarg_t col, sysarg_t row);
     54        void (*flush)(struct outdev *dev);
    5555} outdev_ops_t;
    5656
  • uspace/srv/hid/output/proto/vt100.h

    rc832ab15 r5b0cf63  
    3535#include <io/charfield.h>
    3636
    37 typedef void (* vt100_putchar_t)(wchar_t ch);
    38 typedef void (* vt100_control_puts_t)(const char *str);
    39 typedef void (* vt100_flush_t)(void);
     37typedef void (*vt100_putchar_t)(wchar_t ch);
     38typedef void (*vt100_control_puts_t)(const char *str);
     39typedef void (*vt100_flush_t)(void);
    4040
    4141typedef struct {
Note: See TracChangeset for help on using the changeset viewer.