This is cleanup after initrd removal

Signed-off-by: Askar Safin <safinas...@gmail.com>
---
 init/main.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/init/main.c b/init/main.c
index cbebd64f523c..a42f1f0fce84 100644
--- a/init/main.c
+++ b/init/main.c
@@ -1587,11 +1587,11 @@ static noinline void __init kernel_init_freeable(void)
         * check if there is an early userspace init.  If yes, let it do all
         * the work
         */
-       int ramdisk_command_access;
-       ramdisk_command_access = init_eaccess(initramfs_execute_command);
-       if (ramdisk_command_access != 0) {
+       int initramfs_command_access;
+       initramfs_command_access = init_eaccess(initramfs_execute_command);
+       if (initramfs_command_access != 0) {
                pr_warn("check access for rdinit=%s failed: %i, ignoring\n",
-                       initramfs_execute_command, ramdisk_command_access);
+                       initramfs_execute_command, initramfs_command_access);
                initramfs_execute_command = NULL;
                prepare_namespace();
        }
-- 
2.47.2


Reply via email to