summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/philips
diff options
context:
space:
mode:
authorBoris Gjenero <dreamlayers@rockbox.org>2011-12-21 17:36:18 +0000
committerBoris Gjenero <dreamlayers@rockbox.org>2011-12-21 17:36:18 +0000
commit14c2e677fd3c23ce7ae633b04dc64973c07a4479 (patch)
tree343ace015d576df26e0f6e9f71f8a077204852af /firmware/target/arm/philips
parent2800c55a6adda5987d9675e3e73185b8d7b30cab (diff)
downloadrockbox-14c2e677fd3c23ce7ae633b04dc64973c07a4479.tar.gz
rockbox-14c2e677fd3c23ce7ae633b04dc64973c07a4479.zip
Make more local functions static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31395 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/philips')
-rw-r--r--firmware/target/arm/philips/hdd1630/button-hdd1630.c2
-rw-r--r--firmware/target/arm/philips/hdd6330/button-hdd6330.c2
2 files changed, 2 insertions, 2 deletions
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;
* Generate a click sound from the player (not in headphones yet)
* TODO: integrate this with the "key click" option
*/
-void button_click(void)
+static void button_click(void)
{
GPO32_ENABLE |= 0x2000;
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;
* Generate a click sound from the player (not in headphones yet)
* TODO: integrate this with the "key click" option
*/
-void button_click(void)
+static void button_click(void)
{
GPO32_ENABLE |= 0x2000;
GPO32_VAL |= 0x2000;