summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/as3525/sd-as3525.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/firmware/target/arm/as3525/sd-as3525.c b/firmware/target/arm/as3525/sd-as3525.c
index 5cffced..2b299f1 100644
--- a/firmware/target/arm/as3525/sd-as3525.c
+++ b/firmware/target/arm/as3525/sd-as3525.c
@@ -22,8 +22,6 @@
/* Driver for the ARM PL180 SD/MMC controller inside AS3525 SoC */
-/* TODO: Find the real capacity of >2GB models (will be useful for USB) */
-
#include "config.h" /* for HAVE_MULTIDRIVE & AMS_OF_SIZE */
#include "fat.h"
#include "thread.h"
@@ -575,7 +573,7 @@ bool sd_present(IF_MD_NONVOID(int drive))
static int sd_wait_for_state(const int drive, unsigned int state)
{
unsigned long response = 0;
- unsigned int timeout = current_tick + 100; /* 100 ticks timeout */
+ unsigned int timeout = current_tick + HZ;
while (1)
{