aboutsummaryrefslogtreecommitdiffstats
path: root/fs/debugfs
diff options
context:
space:
mode:
authorSasha Levin <sasha.levin@oracle.com>2012-12-20 14:11:22 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-17 13:02:08 -0800
commit1884bd4b1461d16d10ab4ab4d19725b4e0717f7a (patch)
tree41b733040b563fafe8119a032d92c288ec6b8428 /fs/debugfs
parentDocumentation: devres: add PHY get/put functions to list of supported calls (diff)
downloadlinux-dev-1884bd4b1461d16d10ab4ab4d19725b4e0717f7a.tar.xz
linux-dev-1884bd4b1461d16d10ab4ab4d19725b4e0717f7a.zip
debugfs: remove redundant initialization of dentry
We already initialize it to NULL when declaring it, no need to do that twice. Signed-off-by: Sasha Levin <sasha.levin@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/debugfs')
-rw-r--r--fs/debugfs/inode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index 153bb1e42e63..d329f9c55753 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -322,7 +322,6 @@ static struct dentry *__create_file(const char *name, umode_t mode,
if (!parent)
parent = debugfs_mount->mnt_root;
- dentry = NULL;
mutex_lock(&parent->d_inode->i_mutex);
dentry = lookup_one_len(name, parent, strlen(name));
if (!IS_ERR(dentry)) {