[U-Boot] [PATCH] lcd_putc bug fix for tab.

4 Feb
2009
4 Feb
'09
midnight
Signed-off-by: Derek Ou dou@siconix.com --- common/lcd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/common/lcd.c b/common/lcd.c index 5f73247..2bcdba2 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -187,7 +187,7 @@ void lcd_putc (const char c) return;
case '\t': /* Tab (8 chars alignment) */ - console_col |= 8; + console_col += 8; console_col &= ~7;
if (console_col >= CONSOLE_COLS) {
--
1.5.4.3

21 Feb
21 Feb
10:27 p.m.
Dear Derek Ou,
In message 1233702007-18937-1-git-send-email-dou@siconix.com you wrote:
Signed-off-by: Derek Ou dou@siconix.com
common/lcd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
A committee is a group that keeps the minutes and loses hours.
-- Milton Berle
5924
Age (days ago)
5942
Last active (days ago)
1 comments
2 participants
participants (2)
-
Derek Ou
-
Wolfgang Denk