summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-player.c4
-rw-r--r--firmware/drivers/lcd.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/lcd-player.c b/firmware/drivers/lcd-player.c
index 464c872d97..a19d83abe0 100644
--- a/firmware/drivers/lcd-player.c
+++ b/firmware/drivers/lcd-player.c
@@ -169,7 +169,7 @@ static int lcd_get_free_pat(int ch)
169 169
170} 170}
171 171
172void xlcd_update() 172void xlcd_update(void)
173{ 173{
174 int x, y; 174 int x, y;
175 for (x=0; x<11; x++) { 175 for (x=0; x<11; x++) {
@@ -308,7 +308,7 @@ void lcd_putc(int x, int y, unsigned short ch)
308 xlcd_update(); 308 xlcd_update();
309} 309}
310 310
311unsigned char lcd_get_locked_pattern() 311unsigned char lcd_get_locked_pattern(void)
312{ 312{
313 unsigned char pat=1; 313 unsigned char pat=1;
314 while (pat<LAST_RESERVED_CHAR) { 314 while (pat<LAST_RESERVED_CHAR) {
diff --git a/firmware/drivers/lcd.h b/firmware/drivers/lcd.h
index 7129e5dc69..bd993387b6 100644
--- a/firmware/drivers/lcd.h
+++ b/firmware/drivers/lcd.h
@@ -85,7 +85,7 @@ enum
85extern void lcd_define_hw_pattern (int which,char *pattern,int length); 85extern void lcd_define_hw_pattern (int which,char *pattern,int length);
86extern void lcd_define_pattern (int which,char *pattern); 86extern void lcd_define_pattern (int which,char *pattern);
87extern void lcd_double_height (bool on); 87extern void lcd_double_height (bool on);
88unsigned char lcd_get_locked_pattern(); 88unsigned char lcd_get_locked_pattern(void);
89void lcd_unlock_pattern(unsigned char pat); 89void lcd_unlock_pattern(unsigned char pat);
90 90
91#endif 91#endif