|
@@ -2114,7 +2114,6 @@ int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
|
|
spin_lock_irqsave(&host->lock, flags);
|
|
spin_lock_irqsave(&host->lock, flags);
|
|
|
|
|
|
hs400_tuning = host->flags & SDHCI_HS400_TUNING;
|
|
hs400_tuning = host->flags & SDHCI_HS400_TUNING;
|
|
- host->flags &= ~SDHCI_HS400_TUNING;
|
|
|
|
|
|
|
|
if (host->tuning_mode == SDHCI_TUNING_MODE_1)
|
|
if (host->tuning_mode == SDHCI_TUNING_MODE_1)
|
|
tuning_count = host->tuning_count;
|
|
tuning_count = host->tuning_count;
|
|
@@ -2156,7 +2155,9 @@ int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
|
|
|
|
|
|
if (host->ops->platform_execute_tuning) {
|
|
if (host->ops->platform_execute_tuning) {
|
|
spin_unlock_irqrestore(&host->lock, flags);
|
|
spin_unlock_irqrestore(&host->lock, flags);
|
|
- return host->ops->platform_execute_tuning(host, opcode);
|
|
|
|
|
|
+ err = host->ops->platform_execute_tuning(host, opcode);
|
|
|
|
+ spin_lock_irqsave(&host->lock, flags);
|
|
|
|
+ goto out_unlock;
|
|
}
|
|
}
|
|
|
|
|
|
host->mmc->retune_period = tuning_count;
|
|
host->mmc->retune_period = tuning_count;
|
|
@@ -2167,6 +2168,7 @@ int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
|
|
|
|
|
|
sdhci_end_tuning(host);
|
|
sdhci_end_tuning(host);
|
|
out_unlock:
|
|
out_unlock:
|
|
|
|
+ host->flags &= ~SDHCI_HS400_TUNING;
|
|
spin_unlock_irqrestore(&host->lock, flags);
|
|
spin_unlock_irqrestore(&host->lock, flags);
|
|
|
|
|
|
return err;
|
|
return err;
|