summaryrefslogtreecommitdiff
path: root/common/lcd.c
diff options
context:
space:
mode:
authorJustin Waters <justin.waters@timesys.com>2009-01-27 16:39:30 -0500
committerJustin Waters <justin.waters@timesys.com>2009-01-27 16:53:21 -0500
commit9187df48c94af2dabf4e533a62c0e0ed7bf25665 (patch)
treec4e2e3836528495b6cd77cd1dfe81a0db46cf5d1 /common/lcd.c
parent380bc0f188f8d41889fde822bcf7ed1afc96e348 (diff)
Add additional checks on CONFIG_LCD_INFO_BELOW_LOGO2009.01-at91-200901272139
CONFIG_LCD_INFO_BELOW_LOGO is really only meaningful if CONFIG_LCD_LOGO is set. We should always check to see if CONFIG_LCD_LOGO is set whenever we do anything based on it. Otherwise, we will run into compilation problems. Signed-off-by: Justin Waters <justin.waters@timesys.com>
Diffstat (limited to 'common/lcd.c')
-rw-r--r--common/lcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/lcd.c b/common/lcd.c
index ae79051d1e..64b8722701 100644
--- a/common/lcd.c
+++ b/common/lcd.c
@@ -444,7 +444,7 @@ static int lcd_init (void *lcdbase)
/* Initialize the console */
console_col = 0;
-#ifdef CONFIG_LCD_INFO_BELOW_LOGO
+#if defined(CONFIG_LCD_LOGO) && defined(CONFIG_LCD_INFO_BELOW_LOGO)
console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
#else
console_row = 1; /* leave 1 blank line below logo */