]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
lcd_putc bug fix for tab.
authorDerek Ou <dou@siconix.com>
Tue, 3 Feb 2009 23:00:07 +0000 (16:00 -0700)
committerWolfgang Denk <wd@denx.de>
Sat, 21 Feb 2009 21:26:55 +0000 (22:26 +0100)
Signed-off-by: Derek Ou <dou@siconix.com>
common/lcd.c

index 5f73247f42c26b0cf1fea7b5513dd6916626024d..2bcdba22577a2b316a3e68255f2b4c26b31bfb24 100644 (file)
@@ -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) {