diff mbox

[U-Boot,v2,07/11] cfb_console: Ignore bell character

Message ID 1335634011-9104-8-git-send-email-pali.rohar@gmail.com
State Accepted
Commit 24fe06cc6f9ec3b6f5367a267818d90dd6e68870
Delegated to: Anatolij Gustschin
Headers show

Commit Message

Pali Rohár April 28, 2012, 5:26 p.m. UTC
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
---
 drivers/video/cfb_console.c |    3 +++
 1 file changed, 3 insertions(+)

Comments

Anatolij Gustschin June 5, 2012, 7:30 a.m. UTC | #1
Hi,

On Sat, 28 Apr 2012 19:26:47 +0200
Pali Rohár <pali.rohar@gmail.com> wrote:

> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> ---
>  drivers/video/cfb_console.c |    3 +++
>  1 file changed, 3 insertions(+)

Applied to u-boot-video/master. Thanks!

Anatolij
diff mbox

Patch

diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c
index c9f9765..dae2178 100644
--- a/drivers/video/cfb_console.c
+++ b/drivers/video/cfb_console.c
@@ -886,6 +886,9 @@  static void parse_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);