summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2012-01-07 19:48:49 +0000
committerRafaël Carré <rafael.carre@gmail.com>2012-01-07 19:48:49 +0000
commit95f3ba56583959ce6df1ed03cbfe00e7f123c494 (patch)
tree88d507f43d7d4fa3cb04953fdcf0c950d3dcc8b0
parent2200c2aa22403f76c0d88c5bccd26ddf03c1eb10 (diff)
downloadrockbox-95f3ba56583959ce6df1ed03cbfe00e7f123c494.tar.gz
rockbox-95f3ba56583959ce6df1ed03cbfe00e7f123c494.zip
lcd_remote_powersave: unused
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31611 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c2
-rw-r--r--firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h1
-rw-r--r--firmware/target/coldfire/iaudio/lcd-remote-iaudio.c2
-rw-r--r--firmware/target/coldfire/iaudio/lcd-remote-target.h1
-rw-r--r--firmware/target/coldfire/iriver/lcd-remote-iriver.c2
-rw-r--r--firmware/target/coldfire/iriver/lcd-remote-target.h1
6 files changed, 6 insertions, 3 deletions
diff --git a/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c b/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
index 2a600d7d18..d8f55ee63d 100644
--- a/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
+++ b/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
@@ -62,6 +62,7 @@ void lcd_remote_sleep(void)
62 remote_state_control_next=REMOTE_CONTROL_SLEEP; 62 remote_state_control_next=REMOTE_CONTROL_SLEEP;
63} 63}
64 64
65#if 0 // FIXME
65void lcd_remote_powersave(bool on) 66void lcd_remote_powersave(bool on)
66{ 67{
67 if(on) 68 if(on)
@@ -75,6 +76,7 @@ void lcd_remote_powersave(bool on)
75 remote_state_control_next=REMOTE_CONTROL_POWER; 76 remote_state_control_next=REMOTE_CONTROL_POWER;
76 } 77 }
77} 78}
79#endif
78 80
79void lcd_remote_set_contrast(int val) 81void lcd_remote_set_contrast(int val)
80{ 82{
diff --git a/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h b/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h
index fba9077571..5a6a88d9b1 100644
--- a/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h
+++ b/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h
@@ -21,7 +21,6 @@
21#ifndef LCD_REMOTE_TARGET_H 21#ifndef LCD_REMOTE_TARGET_H
22#define LCD_REMOTE_TARGET_H 22#define LCD_REMOTE_TARGET_H
23 23
24void lcd_remote_powersave(bool on);
25void lcd_remote_sleep(void); 24void lcd_remote_sleep(void);
26 25
27#endif 26#endif
diff --git a/firmware/target/coldfire/iaudio/lcd-remote-iaudio.c b/firmware/target/coldfire/iaudio/lcd-remote-iaudio.c
index 6793369f50..88fc6fc563 100644
--- a/firmware/target/coldfire/iaudio/lcd-remote-iaudio.c
+++ b/firmware/target/coldfire/iaudio/lcd-remote-iaudio.c
@@ -67,6 +67,7 @@ int lcd_remote_default_contrast(void)
67 return DEFAULT_REMOTE_CONTRAST_SETTING; 67 return DEFAULT_REMOTE_CONTRAST_SETTING;
68} 68}
69 69
70#if 0 // FIXME
70void lcd_remote_powersave(bool on) 71void lcd_remote_powersave(bool on)
71{ 72{
72 if(remote_initialized) { 73 if(remote_initialized) {
@@ -76,6 +77,7 @@ void lcd_remote_powersave(bool on)
76 lcd_remote_write_command(LCD_SET_POWER_SAVE | 1); 77 lcd_remote_write_command(LCD_SET_POWER_SAVE | 1);
77 } 78 }
78} 79}
80#endif
79 81
80void lcd_remote_set_contrast(int val) 82void lcd_remote_set_contrast(int val)
81{ 83{
diff --git a/firmware/target/coldfire/iaudio/lcd-remote-target.h b/firmware/target/coldfire/iaudio/lcd-remote-target.h
index aaa31116ad..55739edde0 100644
--- a/firmware/target/coldfire/iaudio/lcd-remote-target.h
+++ b/firmware/target/coldfire/iaudio/lcd-remote-target.h
@@ -21,7 +21,6 @@
21#ifndef LCD_REMOTE_TARGET_H 21#ifndef LCD_REMOTE_TARGET_H
22#define LCD_REMOTE_TARGET_H 22#define LCD_REMOTE_TARGET_H
23 23
24void lcd_remote_powersave(bool on);
25void lcd_remote_poweroff(void); /* for when remote is plugged during shutdown*/ 24void lcd_remote_poweroff(void); /* for when remote is plugged during shutdown*/
26 25
27#endif 26#endif
diff --git a/firmware/target/coldfire/iriver/lcd-remote-iriver.c b/firmware/target/coldfire/iriver/lcd-remote-iriver.c
index 7c4ba720be..0ff041f033 100644
--- a/firmware/target/coldfire/iriver/lcd-remote-iriver.c
+++ b/firmware/target/coldfire/iriver/lcd-remote-iriver.c
@@ -90,6 +90,7 @@ void lcd_remote_emireduce(bool state)
90} 90}
91#endif 91#endif
92 92
93#if 0 // FIXME
93void lcd_remote_powersave(bool on) 94void lcd_remote_powersave(bool on)
94{ 95{
95 if (remote_initialized) 96 if (remote_initialized)
@@ -98,6 +99,7 @@ void lcd_remote_powersave(bool on)
98 lcd_remote_write_command(LCD_REMOTE_CNTL_ENTIRE_ON_OFF | (on ? 1 : 0)); 99 lcd_remote_write_command(LCD_REMOTE_CNTL_ENTIRE_ON_OFF | (on ? 1 : 0));
99 } 100 }
100} 101}
102#endif
101 103
102void lcd_remote_set_contrast(int val) 104void lcd_remote_set_contrast(int val)
103{ 105{
diff --git a/firmware/target/coldfire/iriver/lcd-remote-target.h b/firmware/target/coldfire/iriver/lcd-remote-target.h
index 99bda496e8..f981abe3cc 100644
--- a/firmware/target/coldfire/iriver/lcd-remote-target.h
+++ b/firmware/target/coldfire/iriver/lcd-remote-target.h
@@ -24,6 +24,5 @@
24#ifdef HAVE_REMOTE_LCD_TICKING 24#ifdef HAVE_REMOTE_LCD_TICKING
25void lcd_remote_emireduce(bool state); 25void lcd_remote_emireduce(bool state);
26#endif 26#endif
27void lcd_remote_powersave(bool on);
28 27
29#endif 28#endif