Message ID | 1430937082-27149-3-git-send-email-lars@metafoo.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Lars, On 05/06/2015 08:31 PM, Lars-Peter Clausen wrote: > The device-tree documentation for the Arasan SDHCI controller already > claims that it supports the standard MMC devicetree properties. Update the > driver implementation accordingly by calling mmc_of_parse(). > > Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> > --- > drivers/mmc/host/sdhci-of-arasan.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c > index 21c0c08..538fd81 100644 > --- a/drivers/mmc/host/sdhci-of-arasan.c > +++ b/drivers/mmc/host/sdhci-of-arasan.c > @@ -175,6 +175,10 @@ static int sdhci_arasan_probe(struct platform_device *pdev) > } > > sdhci_get_of_property(pdev); > + ret = mmc_of_parse(host->mmc); > + if (ret) > + goto clk_disable_all; > + > pltfm_host = sdhci_priv(host); > pltfm_host->priv = sdhci_arasan; > pltfm_host->clk = clk_xin; > I have sent this patch already and I also see it in linux-next. https://lkml.org/lkml/2015/4/7/21 Thanks, Michal -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 05/07/2015 07:00 AM, Michal Simek wrote: > Hi Lars, > > On 05/06/2015 08:31 PM, Lars-Peter Clausen wrote: >> The device-tree documentation for the Arasan SDHCI controller already >> claims that it supports the standard MMC devicetree properties. Update the >> driver implementation accordingly by calling mmc_of_parse(). >> >> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> >> --- >> drivers/mmc/host/sdhci-of-arasan.c | 4 ++++ >> 1 file changed, 4 insertions(+) >> >> diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c >> index 21c0c08..538fd81 100644 >> --- a/drivers/mmc/host/sdhci-of-arasan.c >> +++ b/drivers/mmc/host/sdhci-of-arasan.c >> @@ -175,6 +175,10 @@ static int sdhci_arasan_probe(struct platform_device *pdev) >> } >> >> sdhci_get_of_property(pdev); >> + ret = mmc_of_parse(host->mmc); >> + if (ret) >> + goto clk_disable_all; >> + >> pltfm_host = sdhci_priv(host); >> pltfm_host->priv = sdhci_arasan; >> pltfm_host->clk = clk_xin; >> > > I have sent this patch already and I also see it in linux-next. > https://lkml.org/lkml/2015/4/7/21 Thanks, somehow missed that. Sorry for the noise. -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c index 21c0c08..538fd81 100644 --- a/drivers/mmc/host/sdhci-of-arasan.c +++ b/drivers/mmc/host/sdhci-of-arasan.c @@ -175,6 +175,10 @@ static int sdhci_arasan_probe(struct platform_device *pdev) } sdhci_get_of_property(pdev); + ret = mmc_of_parse(host->mmc); + if (ret) + goto clk_disable_all; + pltfm_host = sdhci_priv(host); pltfm_host->priv = sdhci_arasan; pltfm_host->clk = clk_xin;
The device-tree documentation for the Arasan SDHCI controller already claims that it supports the standard MMC devicetree properties. Update the driver implementation accordingly by calling mmc_of_parse(). Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> --- drivers/mmc/host/sdhci-of-arasan.c | 4 ++++ 1 file changed, 4 insertions(+)