staging: lustre: Add blank lines after declarations
authorArno Tiemersma <arno.tiemersma@gmail.com>
Wed, 14 Jan 2015 14:41:33 +0000 (15:41 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 18 Jan 2015 00:02:27 +0000 (16:02 -0800)
Fixes this checkpatch warning:
WARNING: Missing a blank line after declarations

Signed-off-by: Arno Tiemersma <arno.tiemersma@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/include/lclient.h

index b3b841f4d6e6c73503accd0a9c1ec4c5dff701d5..316500cdff7525fe342fcdfe3a74dea516f1472b 100644 (file)
@@ -135,6 +135,7 @@ static inline struct ccc_thread_info *ccc_env_info(const struct lu_env *env)
 static inline struct cl_attr *ccc_env_thread_attr(const struct lu_env *env)
 {
        struct cl_attr *attr = &ccc_env_info(env)->cti_attr;
+
        memset(attr, 0, sizeof(*attr));
        return attr;
 }
@@ -142,6 +143,7 @@ static inline struct cl_attr *ccc_env_thread_attr(const struct lu_env *env)
 static inline struct cl_io *ccc_env_thread_io(const struct lu_env *env)
 {
        struct cl_io *io = &ccc_env_info(env)->cti_io;
+
        memset(io, 0, sizeof(*io));
        return io;
 }
This page took 0.026587 seconds and 5 git commands to generate.