]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
cfb_console: Ignore bell character
authorPali Rohár <pali.rohar@gmail.com>
Sat, 28 Apr 2012 07:26:47 +0000 (07:26 +0000)
committerAnatolij Gustschin <agust@denx.de>
Tue, 5 Jun 2012 07:24:10 +0000 (09:24 +0200)
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
drivers/video/cfb_console.c

index 6fa61d2728e522647f26cf1f81fe602f368631f7..b38cbd474c38a115868c2872ca979b3613726c3f 100644 (file)
@@ -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);