From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Date: Sat, 17 Jan 2015 22:54:51 +0000 Subject: [U-Boot] [PATCH 09/12] sunxi: mmc: Use a realistic timeout when sending a mmc command In-Reply-To: <1421333554-29822-10-git-send-email-hdegoede@redhat.com> References: <1421333554-29822-1-git-send-email-hdegoede@redhat.com> <1421333554-29822-10-git-send-email-hdegoede@redhat.com> Message-ID: <1421535291.13341.23.camel@hellion.org.uk> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thu, 2015-01-15 at 15:52 +0100, Hans de Goede wrote: > Wait 1 second for the sdcard to respond, rather then waiting for > 0xfffff milliseconds. > > Signed-off-by: Hans de Goede Acked-by: Ian Campbell (needn't wait for the rest of the series I think) > --- > drivers/mmc/sunxi_mmc.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/mmc/sunxi_mmc.c b/drivers/mmc/sunxi_mmc.c > index 6234981..ee8ad5c 100644 > --- a/drivers/mmc/sunxi_mmc.c > +++ b/drivers/mmc/sunxi_mmc.c > @@ -355,7 +355,8 @@ static int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, > } > } > > - error = mmc_rint_wait(mmc, 0xfffff, SUNXI_MMC_RINT_COMMAND_DONE, "cmd"); > + timeout_msecs = 1000; Not strictly necessary to go via the variable, but not harmful either. > + error = mmc_rint_wait(mmc, timeout_msecs, SUNXI_MMC_RINT_COMMAND_DONE, "cmd"); > if (error) > goto out; >