Changeset 1433ecda in mainline for uspace/app/mkexfat/exfat.h


Ignore:
Timestamp:
2018-04-04T15:42:37Z (8 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/app/mkexfat/exfat.h

    r47b2d7e3 r1433ecda  
    6161        uint16_t        label[11];
    6262        uint8_t         _reserved[8];
    63 } __attribute__ ((packed)) exfat_vollabel_dentry_t;
     63} __attribute__((packed)) exfat_vollabel_dentry_t;
    6464
    6565typedef struct {
     
    6868        uint32_t        firstc;
    6969        uint64_t        size;
    70 } __attribute__ ((packed)) exfat_bitmap_dentry_t;
     70} __attribute__((packed)) exfat_bitmap_dentry_t;
    7171
    7272typedef struct {
     
    7676        uint32_t        firstc;
    7777        uint64_t        size;
    78 } __attribute__ ((packed)) exfat_uctable_dentry_t;
     78} __attribute__((packed)) exfat_uctable_dentry_t;
    7979
    8080typedef struct {
     
    8484        uint8_t         guid[16];
    8585        uint8_t         _reserved[10];
    86 } __attribute__ ((packed)) exfat_guid_dentry_t;
     86} __attribute__((packed)) exfat_guid_dentry_t;
    8787
    8888typedef struct {
     
    100100        uint8_t         atime_tz;
    101101        uint8_t         _reserved2[7];
    102 } __attribute__ ((packed)) exfat_file_dentry_t;
     102} __attribute__((packed)) exfat_file_dentry_t;
    103103
    104104typedef struct {
     
    112112        uint32_t        firstc;
    113113        uint64_t        data_size;
    114 } __attribute__ ((packed)) exfat_stream_dentry_t;
     114} __attribute__((packed)) exfat_stream_dentry_t;
    115115
    116116typedef struct {
    117117        uint8_t         flags;
    118118        uint16_t        name[EXFAT_NAME_PART_LEN];
    119 } __attribute__ ((packed)) exfat_name_dentry_t;
     119} __attribute__((packed)) exfat_name_dentry_t;
    120120
    121121
     
    131131                exfat_name_dentry_t     name;
    132132        };
    133 } __attribute__ ((packed)) exfat_dentry_t;
     133} __attribute__((packed)) exfat_dentry_t;
    134134
    135135
     
    163163                uint8_t minor;
    164164                uint8_t major;
    165         } __attribute__ ((packed)) version;
     165        } __attribute__((packed)) version;
    166166        uint16_t volume_flags;     /* 0x6A volume state flags */
    167167        uint8_t bytes_per_sector;  /* 0x6C sector size as (1 << n) */
Note: See TracChangeset for help on using the changeset viewer.