From 24fe06cc6f9ec3b6f5367a267818d90dd6e68870 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pali=20Roh=C3=A1r?= Date: Sat, 28 Apr 2012 07:26:47 +0000 Subject: [PATCH] cfb_console: Ignore bell character MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Pali Rohár --- drivers/video/cfb_console.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 6fa61d2..b38cbd4 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -803,6 +803,9 @@ void video_putc(const char c) console_back(); break; + case 7: /* bell */ + break; /* ignored */ + default: /* draw the char */ video_putchar(console_col * VIDEO_FONT_WIDTH, console_row * VIDEO_FONT_HEIGHT, c); -- 2.7.4