diff options
| author | Andy Fleming <afleming@freescale.com> | 2007-08-03 02:23:23 -0500 | 
|---|---|---|
| committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2007-08-03 02:23:23 -0500 | 
| commit | 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78 (patch) | |
| tree | 4bc9e1362c3090bb6d2df71109228ca61b8d00ce /drivers/cfb_console.c | |
| parent | 5a56af3b522ba47fb33a3fee84d23bf1e5429654 (diff) | |
| parent | 5dc210dec5bace98a50b6ba905347890091a9bb0 (diff) | |
| download | olio-uboot-2014.01-6bf6f114dcdd97ec3f80c2761ed40e31229d6b78.tar.xz olio-uboot-2014.01-6bf6f114dcdd97ec3f80c2761ed40e31229d6b78.zip | |
Merge branch 'testing' into working
Conflicts:
	CHANGELOG
	fs/fat/fat.c
	include/configs/MPC8560ADS.h
	include/configs/pcs440ep.h
	net/eth.c
Diffstat (limited to 'drivers/cfb_console.c')
| -rw-r--r-- | drivers/cfb_console.c | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/drivers/cfb_console.c b/drivers/cfb_console.c index 9727aebbc..bcf877194 100644 --- a/drivers/cfb_console.c +++ b/drivers/cfb_console.c @@ -63,7 +63,7 @@  			       loop in VIDEO_TSTC_FCT (i8042)   CFG_CONSOLE_BLINK_COUNT     - value for delay loop - blink rate   CONFIG_CONSOLE_TIME	     - display time/date in upper right corner, -			       needs CFG_CMD_DATE and CONFIG_CONSOLE_CURSOR +			       needs CONFIG_CMD_DATE and CONFIG_CONSOLE_CURSOR   CONFIG_VIDEO_LOGO	     - display Linux Logo in upper left corner   CONFIG_VIDEO_BMP_LOGO	     - use bmp_logo instead of linux_logo   CONFIG_CONSOLE_EXTRA_INFO   - display additional board information strings @@ -175,15 +175,15 @@ CONFIG_VIDEO_HW_CURSOR:	     - Uses the hardware cursor capability of the  #include <linux/types.h>  #include <devices.h>  #include <video_font.h> -#ifdef CFG_CMD_DATE -#include <rtc.h> +#if defined(CONFIG_CMD_DATE) +#include <rtc.h>  #endif -#if (CONFIG_COMMANDS & CFG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN) +#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)  #include <watchdog.h>  #include <bmp_layout.h> -#endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) || CONFIG_SPLASH_SCREEN */ +#endif  /*****************************************************************************/  /* Cursor definition:							     */ @@ -709,7 +709,7 @@ void video_puts (const char *s)  /*****************************************************************************/ -#if (CONFIG_COMMANDS & CFG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN) +#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)  #define FILL_8BIT_332RGB(r,g,b)	{			\  	*fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6);	\ @@ -1004,7 +1004,7 @@ int video_display_bitmap (ulong bmp_image, int x, int y)  	return (0);  } -#endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) || CONFIG_SPLASH_SCREEN */ +#endif  /*****************************************************************************/ |