summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target')
-rw-r--r--firmware/target/arm/olympus/mrobe-100/lcd-remote-target.h2
-rw-r--r--firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h2
-rw-r--r--firmware/target/coldfire/iaudio/lcd-remote-target.h1
-rw-r--r--firmware/target/coldfire/iaudio/m3/button-m3.c2
-rw-r--r--firmware/target/coldfire/iaudio/m5/button-m5.c2
-rw-r--r--firmware/target/coldfire/iaudio/x5/button-x5.c2
-rw-r--r--firmware/target/coldfire/iriver/lcd-remote-target.h2
7 files changed, 3 insertions, 10 deletions
diff --git a/firmware/target/arm/olympus/mrobe-100/lcd-remote-target.h b/firmware/target/arm/olympus/mrobe-100/lcd-remote-target.h
index 6226f4462e..a214690aec 100644
--- a/firmware/target/arm/olympus/mrobe-100/lcd-remote-target.h
+++ b/firmware/target/arm/olympus/mrobe-100/lcd-remote-target.h
@@ -21,8 +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
24bool remote_detect(void); /* returns detection status */
25
26void lcd_remote_backlight(bool on); 24void lcd_remote_backlight(bool on);
27 25
28bool lcd_remote_read_device(unsigned char *data); 26bool lcd_remote_read_device(unsigned char *data);
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 ee3443b666..a3657490eb 100644
--- a/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h
+++ b/firmware/target/arm/tms320dm320/mrobe-500/lcd-remote-target.h
@@ -26,8 +26,6 @@
26 26
27void lcd_remote_powersave(bool on); 27void lcd_remote_powersave(bool on);
28 28
29bool remote_detect(void);
30
31#ifndef SIMULATOR 29#ifndef SIMULATOR
32void _remote_backlight_on(void); 30void _remote_backlight_on(void);
33void _remote_backlight_off(void); 31void _remote_backlight_off(void);
diff --git a/firmware/target/coldfire/iaudio/lcd-remote-target.h b/firmware/target/coldfire/iaudio/lcd-remote-target.h
index 435eee08c8..fe55212b81 100644
--- a/firmware/target/coldfire/iaudio/lcd-remote-target.h
+++ b/firmware/target/coldfire/iaudio/lcd-remote-target.h
@@ -24,7 +24,6 @@
24#define REMOTE_INIT_LCD 1 24#define REMOTE_INIT_LCD 1
25#define REMOTE_DEINIT_LCD 2 25#define REMOTE_DEINIT_LCD 2
26 26
27bool remote_detect(void);
28void lcd_remote_powersave(bool on); 27void lcd_remote_powersave(bool on);
29void lcd_remote_poweroff(void); /* for when remote is plugged during shutdown*/ 28void lcd_remote_poweroff(void); /* for when remote is plugged during shutdown*/
30 29
diff --git a/firmware/target/coldfire/iaudio/m3/button-m3.c b/firmware/target/coldfire/iaudio/m3/button-m3.c
index 308f656ad2..3c31c962c8 100644
--- a/firmware/target/coldfire/iaudio/m3/button-m3.c
+++ b/firmware/target/coldfire/iaudio/m3/button-m3.c
@@ -24,7 +24,7 @@
24#include "button.h" 24#include "button.h"
25#include "backlight.h" 25#include "backlight.h"
26#include "adc.h" 26#include "adc.h"
27#include "lcd-remote-target.h" 27#include "lcd-remote.h"
28 28
29static bool hold_button = false; 29static bool hold_button = false;
30static bool remote_hold_button = false; 30static bool remote_hold_button = false;
diff --git a/firmware/target/coldfire/iaudio/m5/button-m5.c b/firmware/target/coldfire/iaudio/m5/button-m5.c
index cccda5e598..6dbd2023f2 100644
--- a/firmware/target/coldfire/iaudio/m5/button-m5.c
+++ b/firmware/target/coldfire/iaudio/m5/button-m5.c
@@ -23,7 +23,7 @@
23#include "button.h" 23#include "button.h"
24#include "backlight.h" 24#include "backlight.h"
25#include "adc.h" 25#include "adc.h"
26#include "lcd-remote-target.h" 26#include "lcd-remote.h"
27 27
28/* have buttons scan by default */ 28/* have buttons scan by default */
29static bool button_scan_on = true; 29static bool button_scan_on = true;
diff --git a/firmware/target/coldfire/iaudio/x5/button-x5.c b/firmware/target/coldfire/iaudio/x5/button-x5.c
index c901105100..e1f68de36b 100644
--- a/firmware/target/coldfire/iaudio/x5/button-x5.c
+++ b/firmware/target/coldfire/iaudio/x5/button-x5.c
@@ -23,7 +23,7 @@
23#include "button.h" 23#include "button.h"
24#include "backlight.h" 24#include "backlight.h"
25#include "adc.h" 25#include "adc.h"
26#include "lcd-remote-target.h" 26#include "lcd-remote.h"
27 27
28/* have buttons scan by default */ 28/* have buttons scan by default */
29static bool button_scan_on = true; 29static bool button_scan_on = true;
diff --git a/firmware/target/coldfire/iriver/lcd-remote-target.h b/firmware/target/coldfire/iriver/lcd-remote-target.h
index 7e2b6f5940..85bc754143 100644
--- a/firmware/target/coldfire/iriver/lcd-remote-target.h
+++ b/firmware/target/coldfire/iriver/lcd-remote-target.h
@@ -29,6 +29,4 @@ void lcd_remote_emireduce(bool state);
29#endif 29#endif
30void lcd_remote_powersave(bool on); 30void lcd_remote_powersave(bool on);
31 31
32bool remote_detect(void);
33
34#endif 32#endif