summaryrefslogtreecommitdiff
path: root/uisimulator/common/stubs.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-15 19:40:55 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-24 21:20:13 +0000
commit092c340a2062fa98b7387fc5fd63578ddae7d0b6 (patch)
tree98ec96946eeb2ae709cb0528cc6998e21bb9b290 /uisimulator/common/stubs.c
parent17f7cc92c258bc456a27c3e7c5a19c9409851879 (diff)
downloadrockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.tar.gz
rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.zip
[1/4] Remove SH support and all archos targets
This removes all code specific to SH targets Change-Id: I7980523785d2596e65c06430f4638eec74a06061
Diffstat (limited to 'uisimulator/common/stubs.c')
-rw-r--r--uisimulator/common/stubs.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index dc4f636521..0ad78fdb7c 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -43,8 +43,6 @@ void audio_set_buffer_margin(int seconds)
43 (void)seconds; 43 (void)seconds;
44} 44}
45 45
46/* firmware/target/sh/archos/audio-archos.c */
47
48/* list of tracks in memory */ 46/* list of tracks in memory */
49#define MAX_ID3_TAGS (1<<4) /* Must be power of 2 */ 47#define MAX_ID3_TAGS (1<<4) /* Must be power of 2 */
50#define MAX_ID3_TAGS_MASK (MAX_ID3_TAGS - 1) 48#define MAX_ID3_TAGS_MASK (MAX_ID3_TAGS - 1)
@@ -104,48 +102,6 @@ void mp3_shutdown(void)
104{ 102{
105} 103}
106 104
107/* firmware/drivers/audio/mas35xx.c */
108#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
109void audiohw_set_loudness(int value)
110{
111 (void)value;
112}
113
114void audiohw_set_avc(int value)
115{
116 (void)value;
117}
118
119void audiohw_set_mdb_strength(int value)
120{
121 (void)value;
122}
123
124void audiohw_set_mdb_harmonics(int value)
125{
126 (void)value;
127}
128
129void audiohw_set_mdb_center(int value)
130{
131 (void)value;
132}
133
134void audiohw_set_mdb_shape(int value)
135{
136 (void)value;
137}
138
139void audiohw_set_mdb_enable(int value)
140{
141 (void)value;
142}
143
144void audiohw_set_superbass(int value)
145{
146 (void)value;
147}
148#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
149#endif /* CODEC != SWCODEC */ 105#endif /* CODEC != SWCODEC */
150 106
151int fat_startsector(void) 107int fat_startsector(void)
@@ -311,14 +267,6 @@ bool spdif_powered(void)
311} 267}
312#endif 268#endif
313 269
314#ifdef ARCHOS_PLAYER
315bool is_new_player(void)
316{
317 extern char having_new_lcd;
318 return having_new_lcd;
319}
320#endif
321
322#ifdef HAVE_USB_POWER 270#ifdef HAVE_USB_POWER
323bool usb_powered_only(void) 271bool usb_powered_only(void)
324{ 272{