summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2003-01-10 10:12:17 +0000
committerKjell Ericson <kjell@haxx.se>2003-01-10 10:12:17 +0000
commita33d6b2409cfcc66b54507e466ddb63524fe88c2 (patch)
treed332f6b930601c4bfa06bf69e8394f4fa8408a4f
parente8e2b2dc841f359723cf291a8a05ec762c0e73dc (diff)
downloadrockbox-a33d6b2409cfcc66b54507e466ddb63524fe88c2.tar.gz
rockbox-a33d6b2409cfcc66b54507e466ddb63524fe88c2.zip
Removed warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3058 a1c6a512-1295-4272-9138-f99709370657
-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