WS cleanup: remove SPACE(s) followed by TAB
[platform/kernel/u-boot.git] / fs / ubifs / ubifs.h
index b4ce706..46dfbd0 100644 (file)
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * This file is part of UBIFS.
  *
@@ -6,8 +7,6 @@
  * (C) Copyright 2008-2009
  * Stefan Roese, DENX Software Engineering, sr@denx.de.
  *
- * SPDX-License-Identifier:    GPL-2.0+
- *
  * Authors: Artem Bityutskiy (Битюцкий Артём)
  *          Adrian Hunter
  */
@@ -253,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 *);
@@ -317,8 +316,8 @@ struct super_block {
        struct backing_dev_info *s_bdi;
 #endif
        struct mtd_info         *s_mtd;
-       struct hlist_node       s_instances;
 #ifndef __UBOOT__
+       struct hlist_node       s_instances;
        struct quota_info       s_dquot;        /* Diskquota specific options */
 #endif
 
@@ -327,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;
@@ -432,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;
 
@@ -467,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
 
 /*
@@ -611,7 +610,7 @@ static inline ino_t parent_ino(struct dentry *dentry)
 /* misc.h */
 #define mutex_lock_nested(...)
 #define mutex_unlock_nested(...)
-#define mutex_is_locked(...)   0
+#define mutex_is_locked(...)   1
 #endif
 
 /* Version of this UBIFS implementation */