From beaa292199dd2ae7f24bde5522afe9e04a76f85e Mon Sep 17 00:00:00 2001 From: Jack Halpin Date: Mon, 22 Mar 2010 06:09:19 +0000 Subject: 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 --- firmware/target/arm/as3525/sd-as3525v2.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'firmware/target/arm/as3525') 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) { -- cgit v1.2.3