]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
fs/fat: fix some checkpatch issues in fat.h
authorCruz Julian Bishop <cruzjbishop@gmail.com>
Fri, 28 Sep 2012 00:22:07 +0000 (10:22 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 3 Oct 2012 06:50:56 +0000 (16:50 +1000)
Mainly fix spacing issues such as "foo * bar" and "foo= bar"

Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/fat/fat.h

index ec54c3a7f2f7fbf08541daf1d64dd831e5041739..95cb776e497a0db87bb6a7c31da7eb28b10fea32 100644 (file)
@@ -61,7 +61,7 @@ struct msdos_sb_info {
        unsigned short sec_per_clus; /* sectors/cluster */
        unsigned short cluster_bits; /* log2(cluster_size) */
        unsigned int cluster_size;   /* cluster size */
-       unsigned char fats,fat_bits; /* number of FATs, FAT bits (12 or 16) */
+       unsigned char fats, fat_bits; /* number of FATs, FAT bits (12 or 16) */
        unsigned short fat_start;
        unsigned long fat_length;    /* FAT start & length (sec.) */
        unsigned long dir_start;
@@ -328,7 +328,7 @@ extern long fat_generic_ioctl(struct file *filp, unsigned int cmd,
                              unsigned long arg);
 extern const struct file_operations fat_file_operations;
 extern const struct inode_operations fat_file_inode_operations;
-extern int fat_setattr(struct dentry * dentry, struct iattr * attr);
+extern int fat_setattr(struct dentry *dentry, struct iattr *attr);
 extern void fat_truncate_blocks(struct inode *inode, loff_t offset);
 extern int fat_getattr(struct vfsmount *mnt, struct dentry *dentry,
                       struct kstat *stat);
@@ -346,7 +346,7 @@ extern int fat_fill_super(struct super_block *sb, void *data, int silent,
                          int isvfat, void (*setup)(struct super_block *));
 
 extern int fat_flush_inodes(struct super_block *sb, struct inode *i1,
-                           struct inode *i2);
+                           struct inode *i2);
 static inline unsigned long fat_dir_hash(int logstart)
 {
        return hash_32(logstart, FAT_HASH_BITS);