commit | 9d735b6391bfef4d72a6e2eead3677d9cfc15006 | [log] [tgz] |
---|---|---|
author | Pali Rohár <pali.rohar@gmail.com> | Sat Apr 28 07:26:47 2012 +0000 |
committer | Anatolij Gustschin <agust@denx.de> | Tue Jun 05 09:24:10 2012 +0200 |
tree | 5c96f06f7887c681e3fe72de18d901c0d4599b8c | |
parent | 1665861fce80acad89908b585cf71300cab5fe36 [diff] |
cfb_console: Ignore bell character Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
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 @@ 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);