sd-as3525v2.c We don't need to disable/enable MCI_CLKENA in send_cmd().

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25286 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jack Halpin 2010-03-22 06:09:19 +00:00
parent 2a75da37ae
commit beaa292199

View file

@ -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)
{