diff options
author | Thomas Jarosch <tomj@simonv.com> | 2015-01-11 18:02:43 +0100 |
---|---|---|
committer | Thomas Jarosch <tomj@simonv.com> | 2015-01-11 18:02:43 +0100 |
commit | cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f (patch) | |
tree | 63944006054f4389ef6b189da42cb01c85100cdd /firmware/target/sh/archos | |
parent | 5f5a83e1c9c847a974609e901cf58125f1ef6b84 (diff) | |
download | rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.tar.gz rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.zip |
Make a few local variables static
Change-Id: Ieb77a7f2cdf765afa3121320d03c0478cd97eb0f
Diffstat (limited to 'firmware/target/sh/archos')
-rw-r--r-- | firmware/target/sh/archos/recorder/powermgmt-recorder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/sh/archos/recorder/powermgmt-recorder.c b/firmware/target/sh/archos/recorder/powermgmt-recorder.c index 1e78b8d155..ca6067a4cc 100644 --- a/firmware/target/sh/archos/recorder/powermgmt-recorder.c +++ b/firmware/target/sh/archos/recorder/powermgmt-recorder.c | |||
@@ -85,8 +85,8 @@ static int wrcount = 0; | |||
85 | */ | 85 | */ |
86 | int long_delta; /* long term delta battery voltage */ | 86 | int long_delta; /* long term delta battery voltage */ |
87 | int short_delta; /* short term delta battery voltage */ | 87 | int short_delta; /* short term delta battery voltage */ |
88 | bool disk_activity_last_cycle = false; /* flag set to aid charger time | 88 | static bool disk_activity_last_cycle = false; /* flag set to aid charger time |
89 | * calculation */ | 89 | * calculation */ |
90 | char power_message[POWER_MESSAGE_LEN] = ""; /* message that's shown in | 90 | char power_message[POWER_MESSAGE_LEN] = ""; /* message that's shown in |
91 | debug menu */ | 91 | debug menu */ |
92 | /* percentage at which charging | 92 | /* percentage at which charging |