mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-30 08:03:32 +08:00
cfb_console: Ignore bell character
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
This commit is contained in:
parent
90f60a81da
commit
24fe06cc6f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user