tty/vt: consolemap: remove dflt reset from con_do_clear_unimap()
authorJiri Slaby <jslaby@suse.cz>
Tue, 14 Jun 2022 09:05:36 +0000 (11:05 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Jun 2022 12:17:12 +0000 (14:17 +0200)
con_do_clear_unimap() sets dflt to NULL and then calls
con_release_unimap() which does the very same as the first thing. So
remove the former as it is apparently superfluous.

Suggested-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20220614090537.15557-7-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/vt/consolemap.c

index 9e94ec0..5f3e581 100644 (file)
@@ -563,8 +563,6 @@ static int con_do_clear_unimap(struct vc_data *vc)
        if (!old || old->refcount > 1)
                return con_allocate_new(vc);
 
-       if (old == dflt)
-               dflt = NULL;
        old->sum = 0;
        con_release_unimap(old);