diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-15 19:40:55 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-24 21:20:13 +0000 |
commit | 092c340a2062fa98b7387fc5fd63578ddae7d0b6 (patch) | |
tree | 98ec96946eeb2ae709cb0528cc6998e21bb9b290 /uisimulator/common | |
parent | 17f7cc92c258bc456a27c3e7c5a19c9409851879 (diff) | |
download | rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.tar.gz rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.tar.bz2 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')
-rw-r--r-- | uisimulator/common/stubs.c | 52 |
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) (void)seconds; } -/* firmware/target/sh/archos/audio-archos.c */ - /* list of tracks in memory */ #define MAX_ID3_TAGS (1<<4) /* Must be power of 2 */ #define MAX_ID3_TAGS_MASK (MAX_ID3_TAGS - 1) @@ -104,48 +102,6 @@ void mp3_shutdown(void) { } -/* firmware/drivers/audio/mas35xx.c */ -#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) -void audiohw_set_loudness(int value) -{ - (void)value; -} - -void audiohw_set_avc(int value) -{ - (void)value; -} - -void audiohw_set_mdb_strength(int value) -{ - (void)value; -} - -void audiohw_set_mdb_harmonics(int value) -{ - (void)value; -} - -void audiohw_set_mdb_center(int value) -{ - (void)value; -} - -void audiohw_set_mdb_shape(int value) -{ - (void)value; -} - -void audiohw_set_mdb_enable(int value) -{ - (void)value; -} - -void audiohw_set_superbass(int value) -{ - (void)value; -} -#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */ #endif /* CODEC != SWCODEC */ int fat_startsector(void) @@ -311,14 +267,6 @@ bool spdif_powered(void) } #endif -#ifdef ARCHOS_PLAYER -bool is_new_player(void) -{ - extern char having_new_lcd; - return having_new_lcd; -} -#endif - #ifdef HAVE_USB_POWER bool usb_powered_only(void) { |