diff options
author | Kyungmin Park <kyungmin.park@samsung.com> | 2011-11-17 13:34:33 +0900 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-12-10 16:18:37 -0500 |
commit | c99872a16fa7642987f30c750dc166674b0d8060 (patch) | |
tree | f5fd5f1a9005ca6b94c37c2fde7b50aa7feb88d2 /drivers/mmc/core | |
parent | a80f16276388a177199204aa5b60f328d4464110 (diff) |
mmc: core: Fix typo at mmc_card_sleep
Fix wrong bus_ops->sleep check. (This isn't expected to have real-world
consequences, because the mmc core always defines both 'awake' and
'sleep' ops.)
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/core')
-rw-r--r-- | drivers/mmc/core/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index 7ee2e07f36f..271efeac860 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -2218,7 +2218,7 @@ int mmc_card_sleep(struct mmc_host *host) mmc_bus_get(host); - if (host->bus_ops && !host->bus_dead && host->bus_ops->awake) + if (host->bus_ops && !host->bus_dead && host->bus_ops->sleep) err = host->bus_ops->sleep(host); mmc_bus_put(host); |