diff options
author | Harry Hong <hhong@nvidia.com> | 2014-02-12 14:31:53 +0900 |
---|---|---|
committer | Harry Hong <hhong@nvidia.com> | 2014-02-12 22:44:20 -0800 |
commit | 1c244c6cdbe0fb65b8247a7e2f97f8b3f41e9310 (patch) | |
tree | 31980c88bfb5de07d5836c1be35416897591a5cf | |
parent | 2477aa4dd63d241983ed9828c7384970027892c2 (diff) |
mmc: core: Increase timeout for sanitizedaily-2014.02.24.0_rel-tegranote-r4-partner
Increae timeout value for sanitize operation
based on Hynix 16GB emmc Max delay.
Bug 1453048
Change-Id: I2509de6613f0fd3c52ea2fa361b96bd8e3806bbf
Signed-off-by: Harry Hong <hhong@nvidia.com>
Reviewed-on: http://git-master/r/366290
Reviewed-by: Pavan Kunapuli <pkunapuli@nvidia.com>
GVS: Gerrit_Virtual_Submit
-rw-r--r-- | drivers/mmc/host/sdhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index f49cb1d5565d..4b61ee3c3b01 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -1000,7 +1000,7 @@ static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd) if ((cmd->opcode == MMC_SWITCH) && (((cmd->arg >> 16) & EXT_CSD_SANITIZE_START) == EXT_CSD_SANITIZE_START)) - timeout = 100; + timeout = 920; else timeout = 10; |