summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/viewport.c1
-rw-r--r--apps/recorder/peakmeter.c1
-rw-r--r--apps/status.c29
3 files changed, 3 insertions, 28 deletions
diff --git a/apps/gui/viewport.c b/apps/gui/viewport.c
index a6313b88bd..f8223f7af5 100644
--- a/apps/gui/viewport.c
+++ b/apps/gui/viewport.c
@@ -34,7 +34,6 @@
34#include "statusbar.h" 34#include "statusbar.h"
35#include "screen_access.h" 35#include "screen_access.h"
36#include "appevents.h" 36#include "appevents.h"
37#include "gwps.h"
38 37
39static int statusbar_enabled = 0; 38static int statusbar_enabled = 0;
40 39
diff --git a/apps/recorder/peakmeter.c b/apps/recorder/peakmeter.c
index 18026292ad..fc68ce4267 100644
--- a/apps/recorder/peakmeter.c
+++ b/apps/recorder/peakmeter.c
@@ -29,7 +29,6 @@
29#include "storage.h" 29#include "storage.h"
30#include "lcd.h" 30#include "lcd.h"
31#include "scrollbar.h" 31#include "scrollbar.h"
32#include "gwps.h"
33#include "sprintf.h" 32#include "sprintf.h"
34#include "button.h" 33#include "button.h"
35#include "system.h" 34#include "system.h"
diff --git a/apps/status.c b/apps/status.c
index 9bdea15543..92f29c1b83 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -18,37 +18,14 @@
18 * KIND, either express or implied. 18 * KIND, either express or implied.
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21#include "string.h" 21#include <string.h>
22#include "lcd.h" 22#include <stdbool.h>
23#include "debug.h" 23#include "config.h"
24#include "kernel.h"
25#include "power.h"
26#include "thread.h"
27#include "settings.h"
28#include "status.h" 24#include "status.h"
29#include "mp3_playback.h"
30#include "audio.h" 25#include "audio.h"
31#include "gwps.h"
32#if CONFIG_RTC
33#include "timefuncs.h"
34#endif
35#ifdef HAVE_LCD_BITMAP
36#include "icons.h"
37#include "font.h"
38#endif
39#include "powermgmt.h"
40#include "led.h"
41#include "sound.h"
42#if CONFIG_KEYPAD == IRIVER_H100_PAD
43#include "button.h"
44#endif
45#include "usb.h"
46#if CONFIG_TUNER 26#if CONFIG_TUNER
47#include "radio.h" 27#include "radio.h"
48#endif 28#endif
49#if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
50#include "pcm_record.h"
51#endif
52 29
53static enum playmode ff_mode; 30static enum playmode ff_mode;
54 31