summaryrefslogtreecommitdiff
path: root/firmware/target/arm
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm')
-rw-r--r--firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c2
-rw-r--r--firmware/target/arm/philips/hdd1630/button-hdd1630.c2
-rw-r--r--firmware/target/arm/philips/hdd6330/button-hdd6330.c2
-rw-r--r--firmware/target/arm/s5l8700/ipodnano2g/lcd-nano2g.c2
-rw-r--r--firmware/target/arm/s5l8700/ipodnano2g/piezo-nano2g.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c b/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
index d1e1c82c95..1f7ab47a0f 100644
--- a/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
+++ b/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
@@ -233,7 +233,7 @@ static void remote_dev_enable(bool enable)
233 } 233 }
234} 234}
235 235
236void remote_update_lcd(void) 236static void remote_update_lcd(void)
237{ 237{
238 int x, y, draw_now; 238 int x, y, draw_now;
239 unsigned char data[RC_WIDTH + 7]; 239 unsigned char data[RC_WIDTH + 7];
diff --git a/firmware/target/arm/philips/hdd1630/button-hdd1630.c b/firmware/target/arm/philips/hdd1630/button-hdd1630.c
index ab06c0cf1a..df0f5afbed 100644
--- a/firmware/target/arm/philips/hdd1630/button-hdd1630.c
+++ b/firmware/target/arm/philips/hdd1630/button-hdd1630.c
@@ -33,7 +33,7 @@ static int int_btn = BUTTON_NONE;
33 * Generate a click sound from the player (not in headphones yet) 33 * Generate a click sound from the player (not in headphones yet)
34 * TODO: integrate this with the "key click" option 34 * TODO: integrate this with the "key click" option
35 */ 35 */
36void button_click(void) 36static void button_click(void)
37{ 37{
38 GPO32_ENABLE |= 0x2000; 38 GPO32_ENABLE |= 0x2000;
39 GPO32_VAL |= 0x2000; 39 GPO32_VAL |= 0x2000;
diff --git a/firmware/target/arm/philips/hdd6330/button-hdd6330.c b/firmware/target/arm/philips/hdd6330/button-hdd6330.c
index 4e40de57ab..924069bcbd 100644
--- a/firmware/target/arm/philips/hdd6330/button-hdd6330.c
+++ b/firmware/target/arm/philips/hdd6330/button-hdd6330.c
@@ -39,7 +39,7 @@ static int repeat = 0;
39 * Generate a click sound from the player (not in headphones yet) 39 * Generate a click sound from the player (not in headphones yet)
40 * TODO: integrate this with the "key click" option 40 * TODO: integrate this with the "key click" option
41 */ 41 */
42void button_click(void) 42static void button_click(void)
43{ 43{
44 GPO32_ENABLE |= 0x2000; 44 GPO32_ENABLE |= 0x2000;
45 GPO32_VAL |= 0x2000; 45 GPO32_VAL |= 0x2000;
diff --git a/firmware/target/arm/s5l8700/ipodnano2g/lcd-nano2g.c b/firmware/target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
index 51f40c7a33..6434469881 100644
--- a/firmware/target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
+++ b/firmware/target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
@@ -211,7 +211,7 @@ bool lcd_active(void)
211 211
212#ifdef HAVE_LCD_SLEEP 212#ifdef HAVE_LCD_SLEEP
213 213
214void lcd_wakeup(void) 214static void lcd_wakeup(void)
215{ 215{
216 unsigned short *lcd_init_sequence; 216 unsigned short *lcd_init_sequence;
217 unsigned int lcd_init_sequence_length; 217 unsigned int lcd_init_sequence_length;
diff --git a/firmware/target/arm/s5l8700/ipodnano2g/piezo-nano2g.c b/firmware/target/arm/s5l8700/ipodnano2g/piezo-nano2g.c
index 548d007780..78e7f00347 100644
--- a/firmware/target/arm/s5l8700/ipodnano2g/piezo-nano2g.c
+++ b/firmware/target/arm/s5l8700/ipodnano2g/piezo-nano2g.c
@@ -37,7 +37,7 @@ void INT_TIMERD(void)
37 } 37 }
38} 38}
39 39
40void piezo_start(unsigned short cycles, unsigned short periods) 40static void piezo_start(unsigned short cycles, unsigned short periods)
41{ 41{
42#ifndef SIMULATOR 42#ifndef SIMULATOR
43 duration = periods; 43 duration = periods;