Files
u-boot-tk1-som/drivers
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-08-08 05:17:06 +05:30
2009-09-04 21:54:52 +02:00
2010-09-10 00:16:19 +02:00
2009-09-04 21:54:04 +02:00
2010-09-10 00:16:19 +02:00
2010-08-09 11:52:29 -07:00
2010-09-03 11:20:02 +02:00