提交 b2822d37 编写于 作者: U Ulf Hansson 提交者: Chris Ball

mmc: sdricoh_cs: Move away from using deprecated APIs

Suspend and resume of cards are being handled from the protocol layer
and consequently the mmc_suspend|resume_host APIs are deprecated.

This means we can simplify the suspend|resume callbacks by removing the
use of the deprecated APIs.

Cc: Sascha Sommer <saschasommer@freenet.de>
Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
Acked-by: NSascha Sommer <saschasommer@freenet.de>
Signed-off-by: NChris Ball <cjb@laptop.org>
上级 ff71c4bc
...@@ -516,9 +516,7 @@ static void sdricoh_pcmcia_detach(struct pcmcia_device *link) ...@@ -516,9 +516,7 @@ static void sdricoh_pcmcia_detach(struct pcmcia_device *link)
#ifdef CONFIG_PM #ifdef CONFIG_PM
static int sdricoh_pcmcia_suspend(struct pcmcia_device *link) static int sdricoh_pcmcia_suspend(struct pcmcia_device *link)
{ {
struct mmc_host *mmc = link->priv;
dev_dbg(&link->dev, "suspend\n"); dev_dbg(&link->dev, "suspend\n");
mmc_suspend_host(mmc);
return 0; return 0;
} }
...@@ -527,7 +525,6 @@ static int sdricoh_pcmcia_resume(struct pcmcia_device *link) ...@@ -527,7 +525,6 @@ static int sdricoh_pcmcia_resume(struct pcmcia_device *link)
struct mmc_host *mmc = link->priv; struct mmc_host *mmc = link->priv;
dev_dbg(&link->dev, "resume\n"); dev_dbg(&link->dev, "resume\n");
sdricoh_reset(mmc_priv(mmc)); sdricoh_reset(mmc_priv(mmc));
mmc_resume_host(mmc);
return 0; return 0;
} }
#else #else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册