Timur Tabi 6561863678 video: cfb_console: fix definition and usage of CURSOR_xxx macros
The CURSOR_ON, CURSOR_OFF, and CURSOR_SET macros are defined incorrectly.  If
cursor support is disabled, then these macros are defined to nothing, but
then they are used like this:

	if (console_col < CONSOLE_COLS)
		CURSOR_OFF
	console_row++;

which was compiled like this:

	if (console_col < CONSOLE_COLS)
		console_row++;

This is obviously not what was intended.

Signed-off-by: Timur Tabi <timur@freescale.com>
Acked-by: Detlev Zundel <dzu@denx.de>
2010-09-16 00:44:06 +02:00
..
2010-01-27 21:23:14 +01:00
2009-06-30 16:22:35 +02:00
2008-10-18 21:54:03 +02:00
2008-08-18 23:36:17 +02:00
2008-08-18 23:36:17 +02:00
2008-10-18 21:54:03 +02:00
2008-10-18 21:54:03 +02:00