From: Colin Ian King Date: Mon, 16 Jan 2023 16:43:32 +0000 (+0000) Subject: mm/secretmem: remove redundant initiialization of pointer file X-Git-Tag: v6.6.17~5460^2~228 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98001fd63d59d2f99c90db823d322de91ff7d771;p=platform%2Fkernel%2Flinux-rpi.git mm/secretmem: remove redundant initiialization of pointer file The pointer file is being initialized with a value that is never read, it is being re-assigned later on. Clean up code by removing the redundant initialization. Link: https://lkml.kernel.org/r/20230116164332.79500-1-colin.i.king@gmail.com Signed-off-by: Colin Ian King Reviewed-by: Andrew Morton Reviewed-by: Mike Rapoport (IBM) Signed-off-by: Andrew Morton --- diff --git a/mm/secretmem.c b/mm/secretmem.c index 04c3ac9448a1..be3fff86ba00 100644 --- a/mm/secretmem.c +++ b/mm/secretmem.c @@ -190,7 +190,7 @@ static struct vfsmount *secretmem_mnt; static struct file *secretmem_file_create(unsigned long flags) { - struct file *file = ERR_PTR(-ENOMEM); + struct file *file; struct inode *inode; const char *anon_name = "[secretmem]"; const struct qstr qname = QSTR_INIT(anon_name, strlen(anon_name));