drivers: android: Fix a variable declaration coding style issue
authorMrinal Pandey <mrinalmni@gmail.com>
Fri, 24 Jul 2020 13:14:33 +0000 (18:44 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Jul 2020 15:05:44 +0000 (17:05 +0200)
Add a blank line after variable declarations as suggested by checkpatch.

Signed-off-by: Mrinal Pandey <mrinalmni@gmail.com>
Link: https://lore.kernel.org/r/20200724131433.stf3ycooogawyzb3@mrinalpandey
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/android/binderfs.c

index 7cf566a..e218360 100644 (file)
@@ -351,6 +351,7 @@ static const struct super_operations binderfs_super_ops = {
 static inline bool is_binderfs_control_device(const struct dentry *dentry)
 {
        struct binderfs_info *info = dentry->d_sb->s_fs_info;
+
        return info->control_dentry == dentry;
 }