diff options
author | Wolfgang Denk <wd@denx.de> | 2021-09-27 17:42:39 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-09-30 09:08:16 -0400 |
commit | 0cf207ec01cbacae47585fcc26591dd2296507d6 (patch) | |
tree | 573cfefc2ab21a033ae98fa2afbd57f1f6528496 /fs | |
parent | 0a50b3c97b3408e52589d873d4c7b54ad365a76c (diff) | |
download | u-boot-0cf207ec01cbacae47585fcc26591dd2296507d6.zip u-boot-0cf207ec01cbacae47585fcc26591dd2296507d6.tar.gz u-boot-0cf207ec01cbacae47585fcc26591dd2296507d6.tar.bz2 |
WS cleanup: remove SPACE(s) followed by TAB
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/btrfs.c | 2 | ||||
-rw-r--r-- | fs/jffs2/summary.h | 10 | ||||
-rw-r--r-- | fs/ubifs/ubifs.h | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/fs/btrfs/btrfs.c b/fs/btrfs/btrfs.c index 52a243a..741c6e2 100644 --- a/fs/btrfs/btrfs.c +++ b/fs/btrfs/btrfs.c @@ -23,7 +23,7 @@ static int show_dir(struct btrfs_root *root, struct extent_buffer *eb, struct btrfs_key key; static const char* dir_item_str[] = { [BTRFS_FT_REG_FILE] = " ", - [BTRFS_FT_DIR] = "DIR", + [BTRFS_FT_DIR] = "DIR", [BTRFS_FT_CHRDEV] = "CHR", [BTRFS_FT_BLKDEV] = "BLK", [BTRFS_FT_FIFO] = "FIF", diff --git a/fs/jffs2/summary.h b/fs/jffs2/summary.h index 834933c..c8cba88 100644 --- a/fs/jffs2/summary.h +++ b/fs/jffs2/summary.h @@ -39,7 +39,7 @@ struct jffs2_sum_inode_flash __u32 inode; /* inode number */ __u32 version; /* inode version */ __u32 offset; /* offset on jeb */ - __u32 totlen; /* record length */ + __u32 totlen; /* record length */ } __attribute__((packed)); struct jffs2_sum_dirent_flash @@ -49,7 +49,7 @@ struct jffs2_sum_dirent_flash __u32 offset; /* offset on jeb */ __u32 pino; /* parent inode */ __u32 version; /* dirent version */ - __u32 ino; /* == zero for unlink */ + __u32 ino; /* == zero for unlink */ uint8_t nsize; /* dirent name size */ uint8_t type; /* dirent type */ uint8_t name[0]; /* dirent name */ @@ -94,7 +94,7 @@ struct jffs2_sum_inode_mem __u32 inode; /* inode number */ __u32 version; /* inode version */ __u32 offset; /* offset on jeb */ - __u32 totlen; /* record length */ + __u32 totlen; /* record length */ } __attribute__((packed)); struct jffs2_sum_dirent_mem @@ -105,7 +105,7 @@ struct jffs2_sum_dirent_mem __u32 offset; /* ofset on jeb */ __u32 pino; /* parent inode */ __u32 version; /* dirent version */ - __u32 ino; /* == zero for unlink */ + __u32 ino; /* == zero for unlink */ uint8_t nsize; /* dirent name size */ uint8_t type; /* dirent type */ uint8_t name[0]; /* dirent name */ @@ -155,7 +155,7 @@ struct jffs2_summary struct jffs2_sum_marker { __u32 offset; /* offset of the summary node in the jeb */ - __u32 magic; /* == JFFS2_SUM_MAGIC */ + __u32 magic; /* == JFFS2_SUM_MAGIC */ }; #define JFFS2_SUMMARY_FRAME_SIZE (sizeof(struct jffs2_raw_summary) + sizeof(struct jffs2_sum_marker)) diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h index 512fdaa..46dfbd0 100644 --- a/fs/ubifs/ubifs.h +++ b/fs/ubifs/ubifs.h @@ -252,10 +252,10 @@ struct inode { }; struct super_operations { - struct inode *(*alloc_inode)(struct super_block *sb); + struct inode *(*alloc_inode)(struct super_block *sb); void (*destroy_inode)(struct inode *); - void (*dirty_inode) (struct inode *, int flags); + void (*dirty_inode) (struct inode *, int flags); int (*write_inode) (struct inode *, struct writeback_control *wbc); int (*drop_inode) (struct inode *); void (*evict_inode) (struct inode *); @@ -326,7 +326,7 @@ struct super_block { char s_id[32]; /* Informational name */ u8 s_uuid[16]; /* UUID */ - void *s_fs_info; /* Filesystem private info */ + void *s_fs_info; /* Filesystem private info */ unsigned int s_max_links; #ifndef __UBOOT__ fmode_t s_mode; @@ -431,7 +431,7 @@ struct file { #define f_dentry f_path.dentry #define f_vfsmnt f_path.mnt const struct file_operations *f_op; - unsigned int f_flags; + unsigned int f_flags; loff_t f_pos; unsigned int f_uid, f_gid; @@ -466,7 +466,7 @@ struct file { #if BITS_PER_LONG==32 #define MAX_LFS_FILESIZE (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1) #elif BITS_PER_LONG==64 -#define MAX_LFS_FILESIZE 0x7fffffffffffffffUL +#define MAX_LFS_FILESIZE 0x7fffffffffffffffUL #endif /* |