mm/secretmem: remove reduntant return value
authorXiu Jianfeng <xiujianfeng@huawei.com>
Tue, 20 Sep 2022 01:22:05 +0000 (09:22 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 3 Oct 2022 21:03:36 +0000 (14:03 -0700)
The return value @ret is always 0, so remove it and return 0 directly.

Link: https://lkml.kernel.org/r/20220920012205.246217-1-xiujianfeng@huawei.com
Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/secretmem.c

index 6a44efb673b2cdb02528f6c00ff1ccfe7c625642..04c3ac9448a1883d490729a60f493c9b2caa2ac5 100644 (file)
@@ -278,10 +278,8 @@ static struct file_system_type secretmem_fs = {
 
 static int __init secretmem_init(void)
 {
-       int ret = 0;
-
        if (!secretmem_enable)
-               return ret;
+               return 0;
 
        secretmem_mnt = kern_mount(&secretmem_fs);
        if (IS_ERR(secretmem_mnt))
@@ -290,6 +288,6 @@ static int __init secretmem_init(void)
        /* prevent secretmem mappings from ever getting PROT_EXEC */
        secretmem_mnt->mnt_flags |= MNT_NOEXEC;
 
-       return ret;
+       return 0;
 }
 fs_initcall(secretmem_init);