Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-25 Thread Chris Ball
Hi Arend, On Tue, Mar 25 2014, Arend van Spriel wrote: > On 03/20/14 06:32, Aaron Lu wrote: >> On 02/22/2014 03:59 AM, Arend van Spriel wrote: >>> When the host->tuning_count is zero it means that the >>> retuning is disabled. This is checked on the first >>> run of sdhci_execute_tuning() by the i

Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-25 Thread Arend van Spriel
On 03/20/14 06:32, Aaron Lu wrote: On 02/22/2014 03:59 AM, Arend van Spriel wrote: When the host->tuning_count is zero it means that the retuning is disabled. This is checked on the first run of sdhci_execute_tuning() by the if statement below: if (!(host->flags& SDHCI_NEEDS_RETUNING)&

Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-19 Thread Aaron Lu
On 02/22/2014 03:59 AM, Arend van Spriel wrote: > When the host->tuning_count is zero it means that the > retuning is disabled. This is checked on the first > run of sdhci_execute_tuning() by the if statement below: > > if (!(host->flags & SDHCI_NEEDS_RETUNING) && host->tuning_count && >

Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-18 Thread Arend van Spriel
On 03/07/14 05:06, Ulf Hansson wrote: On 6 March 2014 10:29, Arend van Spriel wrote: On 02/21/2014 08:59 PM, Arend van Spriel wrote: When the host->tuning_count is zero it means that the retuning is disabled. This is checked on the first run of sdhci_execute_tuning() by the if statement below:

Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-06 Thread Ulf Hansson
On 6 March 2014 10:29, Arend van Spriel wrote: > On 02/21/2014 08:59 PM, Arend van Spriel wrote: >> When the host->tuning_count is zero it means that the >> retuning is disabled. This is checked on the first >> run of sdhci_execute_tuning() by the if statement below: >> >> if (!(host->flags

Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-06 Thread Arend van Spriel
On 02/21/2014 08:59 PM, Arend van Spriel wrote: > When the host->tuning_count is zero it means that the > retuning is disabled. This is checked on the first > run of sdhci_execute_tuning() by the if statement below: > > if (!(host->flags & SDHCI_NEEDS_RETUNING) && host->tuning_count && >

RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-02-21 Thread Arend van Spriel
When the host->tuning_count is zero it means that the retuning is disabled. This is checked on the first run of sdhci_execute_tuning() by the if statement below: if (!(host->flags & SDHCI_NEEDS_RETUNING) && host->tuning_count && (host->tuning_mode == SDHCI_TUNING_MODE_1)) { So