summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/as3525/sd-as3525v2.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/firmware/target/arm/as3525/sd-as3525v2.c b/firmware/target/arm/as3525/sd-as3525v2.c
index ad55a15b5d..7d1c2bfb18 100644
--- a/firmware/target/arm/as3525/sd-as3525v2.c
+++ b/firmware/target/arm/as3525/sd-as3525v2.c
@@ -401,8 +401,6 @@ static bool send_cmd(const int drive, const int cmd, const int arg, const int fl
MCI_COMMAND |= CMD_RW_BIT | CMD_CHECK_CRC_BIT;
}
- MCI_CLKENA &= (1 << drive);
-
MCI_ARGUMENT = arg;
MCI_COMMAND |= CMD_DONE_BIT;
@@ -410,13 +408,9 @@ static bool send_cmd(const int drive, const int cmd, const int arg, const int fl
while(MCI_COMMAND & CMD_DONE_BIT)
{
if(--max == 0) /* timeout */
- {
- MCI_CLKENA |= (1 << drive);
return false;
- }
}
- MCI_CLKENA |= (1 << drive);
if(flags & MCI_RESP)
{