projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90f60a8
)
cfb_console: Ignore bell character
author
Pali Rohár
<pali.rohar@gmail.com>
Sat, 28 Apr 2012 07:26:47 +0000
(07:26 +0000)
committer
Anatolij 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
patch
|
blob
|
history
diff --git
a/drivers/video/cfb_console.c
b/drivers/video/cfb_console.c
index 6fa61d2728e522647f26cf1f81fe602f368631f7..b38cbd474c38a115868c2872ca979b3613726c3f 100644
(file)
--- 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);