From: Tero Roponen Date: Sun, 8 Mar 2009 13:29:31 +0000 (+0200) Subject: trivial: remove unused variable 'path' in alloc_file() X-Git-Tag: v2.6.30-rc1~220^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4e49cb69e7dc87359bbdf1613d1ed872b9c9ebe;p=platform%2Fkernel%2Flinux-exynos.git trivial: remove unused variable 'path' in alloc_file() 'struct path' is not used in alloc_file(). Signed-off-by: Tero Roponen Signed-off-by: Jiri Kosina --- diff --git a/fs/file_table.c b/fs/file_table.c index b74a8e1..54018fe 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -169,7 +169,6 @@ struct file *alloc_file(struct vfsmount *mnt, struct dentry *dentry, fmode_t mode, const struct file_operations *fop) { struct file *file; - struct path; file = get_empty_filp(); if (!file)