HID: playstation: sanity check DualSense calibration data.
[platform/kernel/linux-starfive.git] / mm / secretmem.c
index 3f71540..04c3ac9 100644 (file)
@@ -276,12 +276,10 @@ static struct file_system_type secretmem_fs = {
        .kill_sb        = kill_anon_super,
 };
 
-static int secretmem_init(void)
+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 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);