Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 984589e5 authored by Viresh Kumar's avatar Viresh Kumar Committed by Chris Ball
Browse files

mmc: sdhci-spear: Fix compilation error



With the inclusion of following patch (59b5bc3929b37):
"mmc: sdhci: remove "state" argument from sdhci_suspend_host"

we get a compilation error for sdhci-spear:
drivers/mmc/host/sdhci-spear.c:283:2: error: too many arguments to function
‘sdhci_suspend_host’

This patch fixes this error.

Signed-off-by: default avatarViresh Kumar <viresh.kumar@st.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent 38a60ea2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -277,10 +277,9 @@ static int sdhci_suspend(struct device *dev)
{
	struct sdhci_host *host = dev_get_drvdata(dev);
	struct spear_sdhci *sdhci = dev_get_platdata(dev);
	pm_message_t state = {.event = 0};
	int ret;

	ret = sdhci_suspend_host(host, state);
	ret = sdhci_suspend_host(host);
	if (!ret)
		clk_disable(sdhci->clk);