All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: sdhci-cadence: add parsing sdhci properties
@ 2017-04-11 11:13 ` Piotr Sroka
  0 siblings, 0 replies; 5+ messages in thread
From: Piotr Sroka @ 2017-04-11 11:13 UTC (permalink / raw)
  To: linux-mmc
  Cc: Adrian Hunter, Ulf Hansson, linux-kernel, Masahiro Yamada, Piotr Sroka

Add calling sdhci_get_of_property function to parse sdhci properties.

Signed-off-by: Piotr Sroka <piotrs@cadence.com>
---
 drivers/mmc/host/sdhci-cadence.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/mmc/host/sdhci-cadence.c b/drivers/mmc/host/sdhci-cadence.c
index 7797e98..19d5698 100644
--- a/drivers/mmc/host/sdhci-cadence.c
+++ b/drivers/mmc/host/sdhci-cadence.c
@@ -330,6 +330,8 @@ static int sdhci_cdns_probe(struct platform_device *pdev)
 	host->mmc_host_ops.hs400_enhanced_strobe =
 				sdhci_cdns_hs400_enhanced_strobe;
 
+	sdhci_get_of_property(pdev);
+
 	ret = mmc_of_parse(host->mmc);
 	if (ret)
 		goto free;
-- 
2.2.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] mmc: sdhci-cadence: add parsing sdhci properties
@ 2017-04-11 11:13 ` Piotr Sroka
  0 siblings, 0 replies; 5+ messages in thread
From: Piotr Sroka @ 2017-04-11 11:13 UTC (permalink / raw)
  To: linux-mmc
  Cc: Adrian Hunter, Ulf Hansson, linux-kernel, Masahiro Yamada, Piotr Sroka

Add calling sdhci_get_of_property function to parse sdhci properties.

Signed-off-by: Piotr Sroka <piotrs@cadence.com>
---
 drivers/mmc/host/sdhci-cadence.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/mmc/host/sdhci-cadence.c b/drivers/mmc/host/sdhci-cadence.c
index 7797e98..19d5698 100644
--- a/drivers/mmc/host/sdhci-cadence.c
+++ b/drivers/mmc/host/sdhci-cadence.c
@@ -330,6 +330,8 @@ static int sdhci_cdns_probe(struct platform_device *pdev)
 	host->mmc_host_ops.hs400_enhanced_strobe =
 				sdhci_cdns_hs400_enhanced_strobe;
 
+	sdhci_get_of_property(pdev);
+
 	ret = mmc_of_parse(host->mmc);
 	if (ret)
 		goto free;
-- 
2.2.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] mmc: sdhci-cadence: add parsing sdhci properties
  2017-04-11 11:13 ` Piotr Sroka
  (?)
@ 2017-04-11 12:16 ` Adrian Hunter
  -1 siblings, 0 replies; 5+ messages in thread
From: Adrian Hunter @ 2017-04-11 12:16 UTC (permalink / raw)
  To: Piotr Sroka, linux-mmc; +Cc: Ulf Hansson, linux-kernel, Masahiro Yamada

On 11/04/17 14:13, Piotr Sroka wrote:
> Add calling sdhci_get_of_property function to parse sdhci properties.
> 
> Signed-off-by: Piotr Sroka <piotrs@cadence.com>

Acked-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
>  drivers/mmc/host/sdhci-cadence.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/mmc/host/sdhci-cadence.c b/drivers/mmc/host/sdhci-cadence.c
> index 7797e98..19d5698 100644
> --- a/drivers/mmc/host/sdhci-cadence.c
> +++ b/drivers/mmc/host/sdhci-cadence.c
> @@ -330,6 +330,8 @@ static int sdhci_cdns_probe(struct platform_device *pdev)
>  	host->mmc_host_ops.hs400_enhanced_strobe =
>  				sdhci_cdns_hs400_enhanced_strobe;
>  
> +	sdhci_get_of_property(pdev);
> +
>  	ret = mmc_of_parse(host->mmc);
>  	if (ret)
>  		goto free;
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mmc: sdhci-cadence: add parsing sdhci properties
  2017-04-11 11:13 ` Piotr Sroka
  (?)
  (?)
@ 2017-04-11 12:20 ` Masahiro Yamada
  -1 siblings, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2017-04-11 12:20 UTC (permalink / raw)
  To: Piotr Sroka
  Cc: linux-mmc, Adrian Hunter, Ulf Hansson, Linux Kernel Mailing List

2017-04-11 20:13 GMT+09:00 Piotr Sroka <piotrs@cadence.com>:
> Add calling sdhci_get_of_property function to parse sdhci properties.
>
> Signed-off-by: Piotr Sroka <piotrs@cadence.com>


Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Thanks!




-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mmc: sdhci-cadence: add parsing sdhci properties
  2017-04-11 11:13 ` Piotr Sroka
                   ` (2 preceding siblings ...)
  (?)
@ 2017-04-12 14:11 ` Ulf Hansson
  -1 siblings, 0 replies; 5+ messages in thread
From: Ulf Hansson @ 2017-04-12 14:11 UTC (permalink / raw)
  To: Piotr Sroka; +Cc: linux-mmc, Adrian Hunter, linux-kernel, Masahiro Yamada

On 11 April 2017 at 13:13, Piotr Sroka <piotrs@cadence.com> wrote:
> Add calling sdhci_get_of_property function to parse sdhci properties.
>
> Signed-off-by: Piotr Sroka <piotrs@cadence.com>

Thanks, applied for next!

Kind regards
Uffe

> ---
>  drivers/mmc/host/sdhci-cadence.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/mmc/host/sdhci-cadence.c b/drivers/mmc/host/sdhci-cadence.c
> index 7797e98..19d5698 100644
> --- a/drivers/mmc/host/sdhci-cadence.c
> +++ b/drivers/mmc/host/sdhci-cadence.c
> @@ -330,6 +330,8 @@ static int sdhci_cdns_probe(struct platform_device *pdev)
>         host->mmc_host_ops.hs400_enhanced_strobe =
>                                 sdhci_cdns_hs400_enhanced_strobe;
>
> +       sdhci_get_of_property(pdev);
> +
>         ret = mmc_of_parse(host->mmc);
>         if (ret)
>                 goto free;
> --
> 2.2.2
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-04-12 14:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-11 11:13 [PATCH] mmc: sdhci-cadence: add parsing sdhci properties Piotr Sroka
2017-04-11 11:13 ` Piotr Sroka
2017-04-11 12:16 ` Adrian Hunter
2017-04-11 12:20 ` Masahiro Yamada
2017-04-12 14:11 ` Ulf Hansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.