提交 520322d9 编写于 作者: A Adrian Hunter 提交者: Ulf Hansson

mmc: It is not an error for the card to be removed while suspended

A card can be removed while it is runtime suspended.
Do not print an error message.
Signed-off-by: NAdrian Hunter <adrian.hunter@intel.com>
Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
上级 382c55f8
......@@ -1935,7 +1935,7 @@ static int mmc_runtime_resume(struct mmc_host *host)
int err;
err = _mmc_resume(host);
if (err)
if (err && err != -ENOMEDIUM)
pr_err("%s: error %d doing runtime resume\n",
mmc_hostname(host), err);
......
......@@ -1158,7 +1158,7 @@ static int mmc_sd_runtime_resume(struct mmc_host *host)
int err;
err = _mmc_sd_resume(host);
if (err)
if (err && err != -ENOMEDIUM)
pr_err("%s: error %d doing runtime resume\n",
mmc_hostname(host), err);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册