]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: lustre: Place a space after a semi colon.
authorSurya Seetharaman <surya.seetharaman9@gmail.com>
Mon, 27 Oct 2014 16:52:07 +0000 (22:22 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Oct 2014 07:45:09 +0000 (15:45 +0800)
Removes the following errors generated using checkpatch.pl tool:
drivers/staging/lustre/lustre/ldlm/ldlm_internal.h:247: ERROR: space required after that ';' (ctx:VxV)
drivers/staging/lustre/lustre/ldlm/ldlm_internal.h:269: ERROR: space required after that ';' (ctx:VxV)

Signed-off-by: Surya Seetharaman <suryaseetharaman.9@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/ldlm/ldlm_internal.h

index f997566ef11e1d402366be4b90ab8b9d71f0da7a..06cf6d282e653de490ed7118960a359fa768ef02 100644 (file)
@@ -244,7 +244,7 @@ typedef enum ldlm_policy_res ldlm_policy_res_t;
                                                                            \
                return lprocfs_rd_uint(m, &tmp);                            \
        }                                                                   \
-       struct __##var##__dummy_read {;} /* semicolon catcher */
+       struct __##var##__dummy_read {; } /* semicolon catcher */
 
 #define LDLM_POOL_PROC_WRITER(var, type)                                   \
        static int lprocfs_wr_##var(struct file *file, const char *buffer,  \
@@ -266,7 +266,7 @@ typedef enum ldlm_policy_res ldlm_policy_res_t;
                                                                            \
                return rc;                                                  \
        }                                                                   \
-       struct __##var##__dummy_write {;} /* semicolon catcher */
+       struct __##var##__dummy_write {; } /* semicolon catcher */
 
 static inline int is_granted_or_cancelled(struct ldlm_lock *lock)
 {