diff options
| author | Venkat Gopalakrishnan <venkatg@codeaurora.org> | 2015-01-09 11:09:44 -0800 |
|---|---|---|
| committer | Subhash Jadavani <subhashj@codeaurora.org> | 2016-05-31 15:26:06 -0700 |
| commit | e71e9559d4327b8b48035bcf6947d646b44e46b8 (patch) | |
| tree | d088027692d15fda14cc1d9e3d7b93c3666dcc1c | |
| parent | 99efbad3f449e5dfe422068d8854dfe59ba807e0 (diff) | |
mmc: sdhci-msm: use the generic sdhci_reset()
The reset functionality has been converted to a library function.
Update the sdhci_ops function table to use the generic
sdhci_reset() library function.
Change-Id: I6c535cd5a641e23399bad284e9a1f89ac8811e62
Signed-off-by: Venkat Gopalakrishnan <venkatg@codeaurora.org>
| -rw-r--r-- | drivers/mmc/host/sdhci-msm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c index f2b7d820ccb1..3f242fa5307d 100644 --- a/drivers/mmc/host/sdhci-msm.c +++ b/drivers/mmc/host/sdhci-msm.c @@ -2767,6 +2767,7 @@ static struct sdhci_ops sdhci_msm_ops = { .config_auto_tuning_cmd = sdhci_msm_config_auto_tuning_cmd, .enable_controller_clock = sdhci_msm_enable_controller_clock, .set_bus_width = sdhci_set_bus_width, + .reset = sdhci_reset, }; static void sdhci_set_default_hw_caps(struct sdhci_msm_host *msm_host, |
