diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-10 11:13:21 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-10 11:13:21 -0500 |
commit | ddb5d86f0215bcb6c293510c50eb050e92883b7a (patch) | |
tree | c1b8bcfa43d6161683554bfa646610bc8df94721 /drivers/cfb_console.c | |
parent | f40a7f3e3888b42a43674b099e5470022c8c544c (diff) | |
download | u-boot-imx-ddb5d86f0215bcb6c293510c50eb050e92883b7a.zip u-boot-imx-ddb5d86f0215bcb6c293510c50eb050e92883b7a.tar.gz u-boot-imx-ddb5d86f0215bcb6c293510c50eb050e92883b7a.tar.bz2 |
drivers/: Remove lingering references to CFG_CMD_* symbols.
Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
Those always evaluated TRUE, and thus were always compiled
even when IDE really wasn't defined/wanted.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'drivers/cfb_console.c')
-rw-r--r-- | drivers/cfb_console.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/cfb_console.c b/drivers/cfb_console.c index 617361e..bcf8771 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,9 +175,9 @@ 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 defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN) |