diff options
-rw-r--r-- | firmware/target/arm/as3525/sd-as3525.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/sd-as3525.c b/firmware/target/arm/as3525/sd-as3525.c index ac359f3f85..57ad16bcb2 100644 --- a/firmware/target/arm/as3525/sd-as3525.c +++ b/firmware/target/arm/as3525/sd-as3525.c @@ -912,6 +912,10 @@ void sd_enable(bool on) } #endif /* defined(HAVE_HOTSWAP) && defined (HAVE_ADJUSTABLE_CPU_VOLTAGE) */ + /* not sure why we have to wait, but without this, test_disk freezes + * when closing the 300MB file which was just written to */ + udelay(100); + sd_enabled = false; #ifdef HAVE_MULTIDRIVE |