summaryrefslogtreecommitdiff
path: root/include/lcd.h
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@chromium.org>2011-03-09 17:47:50 +0800
committerSimon Glass <sjg@chromium.org>2011-08-24 10:00:15 -0700
commit163717a9d9855102c0bc6033b403ffc6d7bfa970 (patch)
tree7d14164f587df8728a1df37290c36734e35dbe94 /include/lcd.h
parent393d164f092fb685b1dfdad9d1aeebcc1950b201 (diff)
Fix compiler warning of include/lcd.h
include/lcd.h:240: warning: function declaration isn't a prototype BUG=none TEST=build without above compiler warning Review URL: http://codereview.chromium.org/6648027 Change-Id: I0dbfd8ebce4e71e28c073fd4f074d438211060ec
Diffstat (limited to 'include/lcd.h')
-rw-r--r--include/lcd.h2
1 files changed, 1 insertions, 1 deletions
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);