[U-Boot] [PATCH v2 03/11] cfb_console: Fix function console_back

Pali Rohár pali.rohar at gmail.com
Sat Apr 28 19:26:43 CEST 2012


 * Do not disable and enable cursor again

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

diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c
index 904caf7..51ea167 100644
--- a/drivers/video/cfb_console.c
+++ b/drivers/video/cfb_console.c
@@ -721,7 +721,6 @@ static void console_scrollup(void)
 
 static void console_back(void)
 {
-	CURSOR_OFF;
 	console_col--;
 
 	if (console_col < 0) {
@@ -730,7 +729,6 @@ static void console_back(void)
 		if (console_row < 0)
 			console_row = 0;
 	}
-	CURSOR_SET;
 }
 
 static void console_newline(void)
-- 
1.7.9.5



More information about the U-Boot mailing list