summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-02-18 10:07:27 +0000
committerJens Arnold <amiconn@rockbox.org>2007-02-18 10:07:27 +0000
commit3a37f46fc92fe7f9846a4077cc1a985c500d1174 (patch)
tree76541ae462f02ede816ab3f9b42f5207f068658c /apps
parentda88e84f482c8c96c0d64bf67969b6e9dd9a8379 (diff)
downloadrockbox-3a37f46fc92fe7f9846a4077cc1a985c500d1174.tar.gz
rockbox-3a37f46fc92fe7f9846a4077cc1a985c500d1174.zip
Fix CONFIG_BACKLIGHT warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12393 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/gwps-common.c2
-rw-r--r--apps/menus/display_menu.c6
-rw-r--r--apps/plugins/jpeg.c4
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c4
-rw-r--r--apps/recorder/peakmeter.c6
-rw-r--r--apps/settings.c4
-rw-r--r--apps/settings.h2
-rw-r--r--apps/settings_list.c12
-rw-r--r--apps/sound_menu.c4
9 files changed, 22 insertions, 22 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c
index 0768c32fe9..619159ddff 100644
--- a/apps/gui/gwps-common.c
+++ b/apps/gui/gwps-common.c
@@ -2100,7 +2100,7 @@ bool gui_wps_refresh(struct gui_wps *gwps, int ffwd_offset,
2100 data->peak_meter_enabled = enable_pm; 2100 data->peak_meter_enabled = enable_pm;
2101#endif 2101#endif
2102 2102
2103#ifdef CONFIG_BACKLIGHT 2103#if CONFIG_BACKLIGHT
2104 if (global_settings.caption_backlight && state->id3) { 2104 if (global_settings.caption_backlight && state->id3) {
2105 /* turn on backlight n seconds before track ends, and turn it off n 2105 /* turn on backlight n seconds before track ends, and turn it off n
2106 seconds into the new track. n == backlight_timeout, or 5s */ 2106 seconds into the new track. n == backlight_timeout, or 5s */
diff --git a/apps/menus/display_menu.c b/apps/menus/display_menu.c
index 5dc14ce5b9..143b47e3c1 100644
--- a/apps/menus/display_menu.c
+++ b/apps/menus/display_menu.c
@@ -38,7 +38,7 @@
38#include "lcd-remote.h" 38#include "lcd-remote.h"
39 39
40 40
41#ifdef CONFIG_BACKLIGHT 41#if CONFIG_BACKLIGHT
42int filterfirstkeypress_callback(int action,const struct menu_item_ex *this_item) 42int filterfirstkeypress_callback(int action,const struct menu_item_ex *this_item)
43{ 43{
44 (void)this_item; 44 (void)this_item;
@@ -77,7 +77,7 @@ int flipdisplay_callback(int action,const struct menu_item_ex *this_item)
77 77
78/***********************************/ 78/***********************************/
79/* LCD MENU */ 79/* LCD MENU */
80#ifdef CONFIG_BACKLIGHT 80#if CONFIG_BACKLIGHT
81MENUITEM_SETTING(backlight_timeout, &global_settings.backlight_timeout, NULL); 81MENUITEM_SETTING(backlight_timeout, &global_settings.backlight_timeout, NULL);
82#if CONFIG_CHARGING 82#if CONFIG_CHARGING
83MENUITEM_SETTING(backlight_timeout_plugged, 83MENUITEM_SETTING(backlight_timeout_plugged,
@@ -172,7 +172,7 @@ MENUITEM_FUNCTION(reset_colors, ID2P(LANG_RESET_COLORS),
172/* now the actual menu */ 172/* now the actual menu */
173MAKE_MENU(lcd_settings,ID2P(LANG_LCD_MENU), 173MAKE_MENU(lcd_settings,ID2P(LANG_LCD_MENU),
174 NULL, bitmap_icons_6x8[Icon_Display_menu] 174 NULL, bitmap_icons_6x8[Icon_Display_menu]
175#ifdef CONFIG_BACKLIGHT 175#if CONFIG_BACKLIGHT
176 ,&backlight_timeout 176 ,&backlight_timeout
177# if CONFIG_CHARGING 177# if CONFIG_CHARGING
178 ,&backlight_timeout_plugged 178 ,&backlight_timeout_plugged
diff --git a/apps/plugins/jpeg.c b/apps/plugins/jpeg.c
index 8b90c21d61..f96c954e54 100644
--- a/apps/plugins/jpeg.c
+++ b/apps/plugins/jpeg.c
@@ -2915,7 +2915,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
2915 (actually it should also set the timeout when plugged in, 2915 (actually it should also set the timeout when plugged in,
2916 but the function backlight_set_timeout_plugged is not 2916 but the function backlight_set_timeout_plugged is not
2917 available in plugins) */ 2917 available in plugins) */
2918#ifdef CONFIG_BACKLIGHT 2918#if CONFIG_BACKLIGHT
2919 if (rb->global_settings->backlight_timeout > 0) 2919 if (rb->global_settings->backlight_timeout > 0)
2920 rb->backlight_set_timeout(1); 2920 rb->backlight_set_timeout(1);
2921#endif 2921#endif
@@ -2931,7 +2931,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
2931 rb->ata_spindown(rb->global_settings->disk_spindown); 2931 rb->ata_spindown(rb->global_settings->disk_spindown);
2932#endif 2932#endif
2933 2933
2934#ifdef CONFIG_BACKLIGHT 2934#if CONFIG_BACKLIGHT
2935 /* reset backlight settings */ 2935 /* reset backlight settings */
2936 rb->backlight_set_timeout(rb->global_settings->backlight_timeout); 2936 rb->backlight_set_timeout(rb->global_settings->backlight_timeout);
2937#endif 2937#endif
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 25a5d1a600..36f54dc224 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -883,7 +883,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
883 (actually it should also set the timeout when plugged in, 883 (actually it should also set the timeout when plugged in,
884 but the function backlight_set_timeout_plugged is not 884 but the function backlight_set_timeout_plugged is not
885 available in plugins) */ 885 available in plugins) */
886#ifdef CONFIG_BACKLIGHT 886#if CONFIG_BACKLIGHT
887 if (rb->global_settings->backlight_timeout > 0) 887 if (rb->global_settings->backlight_timeout > 0)
888 rb->backlight_set_timeout(1); 888 rb->backlight_set_timeout(1);
889#endif 889#endif
@@ -954,7 +954,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
954 954
955 rb->lcd_setfont(FONT_UI); 955 rb->lcd_setfont(FONT_UI);
956 956
957#ifdef CONFIG_BACKLIGHT 957#if CONFIG_BACKLIGHT
958 /* reset backlight settings */ 958 /* reset backlight settings */
959 rb->backlight_set_timeout(rb->global_settings->backlight_timeout); 959 rb->backlight_set_timeout(rb->global_settings->backlight_timeout);
960#endif 960#endif
diff --git a/apps/recorder/peakmeter.c b/apps/recorder/peakmeter.c
index 69c5e95893..0e729f6f34 100644
--- a/apps/recorder/peakmeter.c
+++ b/apps/recorder/peakmeter.c
@@ -34,7 +34,7 @@
34#include "peakmeter.h" 34#include "peakmeter.h"
35#include "audio.h" 35#include "audio.h"
36#include "screen_access.h" 36#include "screen_access.h"
37#ifdef CONFIG_BACKLIGHT 37#if CONFIG_BACKLIGHT
38#include "backlight.h" 38#include "backlight.h"
39#endif 39#endif
40#include "action.h" 40#include "action.h"
@@ -1009,7 +1009,7 @@ void peak_meter_draw(struct screen *display, struct meter_scales *scales,
1009 1009
1010#ifdef HAVE_RECORDING 1010#ifdef HAVE_RECORDING
1011 1011
1012#ifdef CONFIG_BACKLIGHT 1012#if CONFIG_BACKLIGHT
1013 /* cliplight */ 1013 /* cliplight */
1014 if ((pm_clip_left || pm_clip_right) && 1014 if ((pm_clip_left || pm_clip_right) &&
1015 global_settings.cliplight && 1015 global_settings.cliplight &&
@@ -1033,7 +1033,7 @@ void peak_meter_draw(struct screen *display, struct meter_scales *scales,
1033 } 1033 }
1034#endif /* HAVE_REMOTE_LCD */ 1034#endif /* HAVE_REMOTE_LCD */
1035 } 1035 }
1036#endif /*CONFIG_BACKLIGHT */ 1036#endif /* CONFIG_BACKLIGHT */
1037 1037
1038 if (trig_status != TRIG_OFF) { 1038 if (trig_status != TRIG_OFF) {
1039 int start_trigx, stop_trigx, ycenter; 1039 int start_trigx, stop_trigx, ycenter;
diff --git a/apps/settings.c b/apps/settings.c
index 8c51181ea0..2001c354d3 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -706,7 +706,7 @@ void settings_apply(void)
706 remote_backlight_set_on_button_hold(global_settings.remote_backlight_on_button_hold); 706 remote_backlight_set_on_button_hold(global_settings.remote_backlight_on_button_hold);
707#endif 707#endif
708#endif /* HAVE_REMOTE_LCD */ 708#endif /* HAVE_REMOTE_LCD */
709#ifdef CONFIG_BACKLIGHT 709#if CONFIG_BACKLIGHT
710 backlight_set_timeout(global_settings.backlight_timeout); 710 backlight_set_timeout(global_settings.backlight_timeout);
711#if CONFIG_CHARGING 711#if CONFIG_CHARGING
712 backlight_set_timeout_plugged(global_settings.backlight_timeout_plugged); 712 backlight_set_timeout_plugged(global_settings.backlight_timeout_plugged);
@@ -848,7 +848,7 @@ void settings_apply(void)
848 spdif_power_enable(global_settings.spdif_enable); 848 spdif_power_enable(global_settings.spdif_enable);
849#endif 849#endif
850 850
851#ifdef CONFIG_BACKLIGHT 851#if CONFIG_BACKLIGHT
852 set_backlight_filter_keypress(global_settings.bl_filter_first_keypress); 852 set_backlight_filter_keypress(global_settings.bl_filter_first_keypress);
853#ifdef HAVE_REMOTE_LCD 853#ifdef HAVE_REMOTE_LCD
854 set_remote_backlight_filter_keypress(global_settings.remote_bl_filter_first_keypress); 854 set_remote_backlight_filter_keypress(global_settings.remote_bl_filter_first_keypress);
diff --git a/apps/settings.h b/apps/settings.h
index 52a45c18ae..f306f4b0de 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -609,7 +609,7 @@ struct user_settings
609#endif 609#endif
610 bool party_mode; /* party mode - unstoppable music */ 610 bool party_mode; /* party mode - unstoppable music */
611 611
612#ifdef CONFIG_BACKLIGHT 612#if CONFIG_BACKLIGHT
613 bool bl_filter_first_keypress; /* filter first keypress when dark? */ 613 bool bl_filter_first_keypress; /* filter first keypress when dark? */
614#ifdef HAVE_REMOTE_LCD 614#ifdef HAVE_REMOTE_LCD
615 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */ 615 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 5914577600..9f24c63a84 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -87,7 +87,7 @@ static const char trig_durations_conf [] =
87 87
88#endif /* HAVE_RECORDING */ 88#endif /* HAVE_RECORDING */
89 89
90#if defined(CONFIG_BACKLIGHT) 90#if CONFIG_BACKLIGHT
91static const char backlight_times_conf [] = 91static const char backlight_times_conf [] =
92 "off,on,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90"; 92 "off,on,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90";
93static const int backlight_times[] = 93static const int backlight_times[] =
@@ -410,7 +410,7 @@ const struct settings_list settings[] = {
410 { lcd_set_contrast, UNIT_INT, MIN_CONTRAST_SETTING, 410 { lcd_set_contrast, UNIT_INT, MIN_CONTRAST_SETTING,
411 MAX_CONTRAST_SETTING, 1, NULL, NULL}}}}, 411 MAX_CONTRAST_SETTING, 1, NULL, NULL}}}},
412#endif 412#endif
413#ifdef CONFIG_BACKLIGHT 413#if CONFIG_BACKLIGHT
414 INT_SETTING_W_CFGVALS(0, backlight_timeout, LANG_BACKLIGHT, 6, 414 INT_SETTING_W_CFGVALS(0, backlight_timeout, LANG_BACKLIGHT, 6,
415 "backlight timeout", backlight_times_conf, UNIT_SEC, 415 "backlight timeout", backlight_times_conf, UNIT_SEC,
416 0, 18, 1, backlight_formatter, backlight_getlang, 416 0, 18, 1, backlight_formatter, backlight_getlang,
@@ -516,7 +516,7 @@ const struct settings_list settings[] = {
516#endif 516#endif
517#endif 517#endif
518 518
519#ifdef CONFIG_BACKLIGHT 519#if CONFIG_BACKLIGHT
520 OFFON_SETTING(0,bl_filter_first_keypress, 520 OFFON_SETTING(0,bl_filter_first_keypress,
521 LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS, false, 521 LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS, false,
522 "backlight filters first keypress", NULL), 522 "backlight filters first keypress", NULL),
@@ -529,7 +529,7 @@ const struct settings_list settings[] = {
529 529
530/** End of old RTC config block **/ 530/** End of old RTC config block **/
531 531
532#ifdef CONFIG_BACKLIGHT 532#if CONFIG_BACKLIGHT
533 OFFON_SETTING(0,caption_backlight, LANG_CAPTION_BACKLIGHT, 533 OFFON_SETTING(0,caption_backlight, LANG_CAPTION_BACKLIGHT,
534 false,"caption backlight",NULL), 534 false,"caption backlight",NULL),
535#ifdef HAVE_REMOTE_LCD 535#ifdef HAVE_REMOTE_LCD
@@ -748,7 +748,7 @@ const struct settings_list settings[] = {
748 INT(0),"prerecording time",NULL,UNUSED}, 748 INT(0),"prerecording time",NULL,UNUSED},
749 {F_T_INT,&global_settings.rec_directory,LANG_RECORD_DIRECTORY, 749 {F_T_INT,&global_settings.rec_directory,LANG_RECORD_DIRECTORY,
750 INT(0),"rec directory",REC_BASE_DIR ",current",UNUSED}, 750 INT(0),"rec directory",REC_BASE_DIR ",current",UNUSED},
751#ifdef CONFIG_BACKLIGHT 751#if CONFIG_BACKLIGHT
752 {F_T_INT,&global_settings.cliplight,LANG_CLIP_LIGHT,INT(0), 752 {F_T_INT,&global_settings.cliplight,LANG_CLIP_LIGHT,INT(0),
753 "cliplight","off,main,both,remote",UNUSED}, 753 "cliplight","off,main,both,remote",UNUSED},
754#endif 754#endif
@@ -926,7 +926,7 @@ const struct settings_list settings[] = {
926 LANG_WARN_ERASEDYNPLAYLIST_MENU,false, 926 LANG_WARN_ERASEDYNPLAYLIST_MENU,false,
927 "warn when erasing dynamic playlist",NULL), 927 "warn when erasing dynamic playlist",NULL),
928 928
929#ifdef CONFIG_BACKLIGHT 929#if CONFIG_BACKLIGHT
930#ifdef HAS_BUTTON_HOLD 930#ifdef HAS_BUTTON_HOLD
931 CHOICE_SETTING(0, backlight_on_button_hold, 931 CHOICE_SETTING(0, backlight_on_button_hold,
932 LANG_BACKLIGHT_ON_BUTTON_HOLD, 0, "backlight on button hold", 932 LANG_BACKLIGHT_ON_BUTTON_HOLD, 0, "backlight on button hold",
diff --git a/apps/sound_menu.c b/apps/sound_menu.c
index c75b527db7..74618b1348 100644
--- a/apps/sound_menu.c
+++ b/apps/sound_menu.c
@@ -430,7 +430,7 @@ static bool reconstartup(void)
430 &global_settings.rec_startup); 430 &global_settings.rec_startup);
431} 431}
432 432
433#ifdef CONFIG_BACKLIGHT 433#if CONFIG_BACKLIGHT
434static bool cliplight(void) 434static bool cliplight(void)
435{ 435{
436 static const struct opt_items names[] = { 436 static const struct opt_items names[] = {
@@ -941,7 +941,7 @@ bool recording_menu(bool no_source)
941 { ID2P(LANG_RECORD_PRERECORD_TIME), recprerecord }, 941 { ID2P(LANG_RECORD_PRERECORD_TIME), recprerecord },
942 { ID2P(LANG_RECORD_DIRECTORY), recdirectory }, 942 { ID2P(LANG_RECORD_DIRECTORY), recdirectory },
943 { ID2P(LANG_RECORD_STARTUP), reconstartup }, 943 { ID2P(LANG_RECORD_STARTUP), reconstartup },
944#ifdef CONFIG_BACKLIGHT 944#if CONFIG_BACKLIGHT
945 { ID2P(LANG_CLIP_LIGHT), cliplight }, 945 { ID2P(LANG_CLIP_LIGHT), cliplight },
946#endif 946#endif
947 { ID2P(LANG_RECORD_TRIGGER), rectrigger }, 947 { ID2P(LANG_RECORD_TRIGGER), rectrigger },