summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/lcd.c2
-rw-r--r--include/lcd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/lcd.c b/common/lcd.c
index e29dc09361..b05e182f32 100644
--- a/common/lcd.c
+++ b/common/lcd.c
@@ -361,7 +361,7 @@ int drv_lcd_init (void)
}
/*----------------------------------------------------------------------*/
-int lcd_clear (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
+int lcd_clear (void)
{
#if LCD_BPP == LCD_MONOCHROME
/* Setting the palette */
diff --git a/include/lcd.h b/include/lcd.h
index ef279799e2..78097ceedc 100644
--- a/include/lcd.h
+++ b/include/lcd.h
@@ -210,7 +210,7 @@ void lcd_disable (void);
void lcd_putc (const char c);
void lcd_puts (const char *s);
void lcd_printf (const char *fmt, ...);
-int lcd_clear ();
+int lcd_clear (void);
/* Allow boards to customize the information displayed */
void lcd_show_board_info(void);