Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219007
b: refs/heads/master
c: 516d5cc
h: refs/heads/master
i:
  219005: d6c5731
  219003: b224869
  218999: 105710a
  218991: 1ebc48c
  218975: 74a50d7
  218943: 43c3486
  218879: a10a715
v: v3
  • Loading branch information
Ohad Ben-Cohen authored and Chris Ball committed Oct 23, 2010
1 parent bb09c08 commit 2d1ec67
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d3fe37b1a1d98f060279bfa32fcf5a134851a91a
refs/heads/master: 516d5ccdc61178b9701af1adfa86a306d51fbad2
37 changes: 37 additions & 0 deletions trunk/drivers/mmc/core/bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/device.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/pm_runtime.h>

#include <linux/mmc/card.h>
#include <linux/mmc/host.h>
Expand Down Expand Up @@ -141,6 +142,41 @@ static int mmc_bus_resume(struct device *dev)
return ret;
}

#ifdef CONFIG_PM_RUNTIME

static int mmc_runtime_suspend(struct device *dev)
{
struct mmc_card *card = mmc_dev_to_card(dev);

return mmc_power_save_host(card->host);
}

static int mmc_runtime_resume(struct device *dev)
{
struct mmc_card *card = mmc_dev_to_card(dev);

return mmc_power_restore_host(card->host);
}

static int mmc_runtime_idle(struct device *dev)
{
return pm_runtime_suspend(dev);
}

static const struct dev_pm_ops mmc_bus_pm_ops = {
.runtime_suspend = mmc_runtime_suspend,
.runtime_resume = mmc_runtime_resume,
.runtime_idle = mmc_runtime_idle,
};

#define MMC_PM_OPS_PTR (&mmc_bus_pm_ops)

#else /* !CONFIG_PM_RUNTIME */

#define MMC_PM_OPS_PTR NULL

#endif /* !CONFIG_PM_RUNTIME */

static struct bus_type mmc_bus_type = {
.name = "mmc",
.dev_attrs = mmc_dev_attrs,
Expand All @@ -150,6 +186,7 @@ static struct bus_type mmc_bus_type = {
.remove = mmc_bus_remove,
.suspend = mmc_bus_suspend,
.resume = mmc_bus_resume,
.pm = MMC_PM_OPS_PTR,
};

int mmc_register_bus(void)
Expand Down

0 comments on commit 2d1ec67

Please sign in to comment.