Re: [U-Boot] [PATCH] mmc: sdhci: Fixed timeout for sdhci_send_command()

2014-07-04 Thread Steve Rae
Tested-by: Steve Rae (does resolve the issue on our board!) On 14-06-27 02:37 AM, Pantelis Antoniou wrote: Hi Eli, On Jun 12, 2014, at 12:41 PM, Eli Billauer wrote: The current wait loop just reads the status 1 times, which makes the actual timeout period platform-dependent. The udelay(

Re: [U-Boot] [PATCH] mmc: sdhci: Fixed timeout for sdhci_send_command()

2014-07-01 Thread Andy Fleming
On Fri, Jun 27, 2014 at 4:37 AM, Pantelis Antoniou < pantelis.anton...@gmail.com> wrote: > Hi Eli, > > On Jun 12, 2014, at 12:41 PM, Eli Billauer wrote: > > > The current wait loop just reads the status 1 times, which makes the > > actual timeout period platform-dependent. The udelay() call wi

Re: [U-Boot] [PATCH] mmc: sdhci: Fixed timeout for sdhci_send_command()

2014-06-27 Thread Pantelis Antoniou
Hi Eli, On Jun 12, 2014, at 12:41 PM, Eli Billauer wrote: > The current wait loop just reads the status 1 times, which makes the > actual timeout period platform-dependent. The udelay() call within the loop > makes the new timeout ~100 ms. > > Signed-off-by: Eli Billauer > --- > drivers/mmc

Re: [U-Boot] [PATCH] mmc: sdhci: Fixed timeout for sdhci_send_command()

2014-06-19 Thread Eli Billauer
On 19/06/14 19:43, Andy Fleming wrote: On Thu, Jun 12, 2014 at 4:41 AM, Eli Billauer wrote: The current wait loop just reads the status 1 times, which makes the actual timeout period platform-dependent. The udelay() call within the loop makes the new timeout ~100 ms. [ snipped patch ]

Re: [U-Boot] [PATCH] mmc: sdhci: Fixed timeout for sdhci_send_command()

2014-06-19 Thread Andy Fleming
On Thu, Jun 12, 2014 at 4:41 AM, Eli Billauer wrote: > The current wait loop just reads the status 1 times, which makes the > actual timeout period platform-dependent. The udelay() call within the loop > makes the new timeout ~100 ms. > > Signed-off-by: Eli Billauer > --- > drivers/mmc/sdhci

[U-Boot] [PATCH] mmc: sdhci: Fixed timeout for sdhci_send_command()

2014-06-12 Thread Eli Billauer
The current wait loop just reads the status 1 times, which makes the actual timeout period platform-dependent. The udelay() call within the loop makes the new timeout ~100 ms. Signed-off-by: Eli Billauer --- drivers/mmc/sdhci.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff