summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorWang Liang <wangliang74@huawei.com>2025-09-04 10:33:45 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-09-06 15:49:52 +0200
commit45747017928c7e6ef71f3a09c5610b7026357162 (patch)
tree15263c56be1962a354588ed84e3d5cd063b604be /drivers
parentfc6a5b540c02d1ec624e4599f45a17f2941a5c00 (diff)
vt: remove redundant check on vc_mode in con_font_set()
Previous commit edab558feba1 ("vt: sort out locking for font handling") move the vc_mode check into console_lock protect, but forget to remove the old check in con_font_set(). Just remove the redundant check. Signed-off-by: Wang Liang <wangliang74@huawei.com> Link: https://lore.kernel.org/r/20250904023345.13731-1-wangliang74@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/tty/vt/vt.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index 3f80e98e5c51..1d9abcfac4c9 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -4885,8 +4885,6 @@ static int con_font_set(struct vc_data *vc, const struct console_font_op *op)
int size;
unsigned int vpitch = op->op == KD_FONT_OP_SET_TALL ? op->height : 32;
- if (vc->vc_mode != KD_TEXT)
- return -EINVAL;
if (!op->data)
return -EINVAL;
if (op->charcount > max_font_glyphs)