summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/sd-as3525v2.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/sd-as3525v2.c')
-rw-r--r--firmware/target/arm/as3525/sd-as3525v2.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/firmware/target/arm/as3525/sd-as3525v2.c b/firmware/target/arm/as3525/sd-as3525v2.c
index f78345577c..b512cc2ea4 100644
--- a/firmware/target/arm/as3525/sd-as3525v2.c
+++ b/firmware/target/arm/as3525/sd-as3525v2.c
@@ -323,9 +323,6 @@ static int sd_first_drive = 0;
323/* for compatibility */ 323/* for compatibility */
324static long last_disk_activity = -1; 324static long last_disk_activity = -1;
325static struct mutex sd_mtx SHAREDBSS_ATTR; 325static struct mutex sd_mtx SHAREDBSS_ATTR;
326#ifndef BOOTLOADER
327bool sd_enabled = false;
328#endif
329 326
330static struct semaphore transfer_completion_signal; 327static struct semaphore transfer_completion_signal;
331static struct semaphore command_completion_signal; 328static struct semaphore command_completion_signal;
@@ -675,7 +672,6 @@ int sd_init(void)
675 return ret; 672 return ret;
676 673
677#ifndef BOOTLOADER 674#ifndef BOOTLOADER
678 sd_enabled = true;
679 enable_controller(false); 675 enable_controller(false);
680#endif 676#endif
681 return 0; 677 return 0;
@@ -879,13 +875,6 @@ long sd_last_disk_activity(void)
879{ 875{
880 return last_disk_activity; 876 return last_disk_activity;
881} 877}
882
883void sd_enable(bool on)
884{
885 mutex_lock(&sd_mtx);
886 enable_controller(on);
887 mutex_unlock(&sd_mtx);
888}
889#endif /* BOOTLOADER */ 878#endif /* BOOTLOADER */
890 879
891tCardInfo *card_get_info_target(int card_no) 880tCardInfo *card_get_info_target(int card_no)