aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/android/binderfs.c
diff options
context:
space:
mode:
authorMrinal Pandey <mrinalmni@gmail.com>2020-07-24 18:44:33 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-07-29 17:05:44 +0200
commit81195f9689ac16c01c894c756b925e28e546b123 (patch)
tree843dd6917f01a540a56270b231e3ca0034001a17 /drivers/android/binderfs.c
parentdrivers: android: Remove braces for a single statement if-else block (diff)
downloadlinux-dev-81195f9689ac16c01c894c756b925e28e546b123.tar.xz
linux-dev-81195f9689ac16c01c894c756b925e28e546b123.zip
drivers: android: Fix a variable declaration coding style issue
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>
Diffstat (limited to 'drivers/android/binderfs.c')
-rw-r--r--drivers/android/binderfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/android/binderfs.c b/drivers/android/binderfs.c
index 7cf566aafe1f..e218360de58d 100644
--- a/drivers/android/binderfs.c
+++ b/drivers/android/binderfs.c
@@ -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;
}