binder: fix braces warning in binderfs

Add braces to avoid compile time warning of
missing braces.

Change-Id: I9e9e26bfcf7cdb7ea24a8530989ff4480b6eb757
Signed-off-by: Gaurav Kohli <gkohli@codeaurora.org>
This commit is contained in:
Gaurav Kohli
2020-07-08 17:51:25 +05:30
committed by Swetha Chikkaboraiah
parent 9499b3ff29
commit b35fdb3b85

View File

@@ -654,7 +654,7 @@ static int binderfs_fill_super(struct super_block *sb, void *data, int silent)
int ret;
struct binderfs_info *info;
struct inode *inode = NULL;
struct binderfs_device device_info = { 0 };
struct binderfs_device device_info = { { 0 } };
const char *name;
size_t len;