[U-Boot] [PATCH] lcd_putc bug fix for tab.
Derek Ou
dou at siconix.com
Wed Feb 4 00:00:07 CET 2009
Signed-off-by: Derek Ou <dou at 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
More information about the U-Boot
mailing list