Re: [U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:09 Pali Rohár wrote: --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c +static void console_swap_colors(void) +{ + eorx = fgx; + fgx = bgx; + bgx = eorx; + eorx = fgx ^ bgx; +} there's nothing calling this new func in

Re: [U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 13:57:40 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:09 Pali Rohár wrote: --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c +static void console_swap_colors(void) +{ + eorx = fgx; + fgx = bgx; + bgx = eorx; + eorx

Re: [U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-18 Thread Mike Frysinger
On Sunday 18 December 2011 14:00:10 Pali Rohár wrote: On Sunday 18 December 2011 13:57:40 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:09 Pali Rohár wrote: --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c +static void console_swap_colors(void) +{

[U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-17 Thread Pali Rohár
* swap background and text color Signed-off-by: Pali Rohár pali.ro...@gmail.com --- drivers/video/cfb_console.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 9092399..867c789 100644 ---