linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] cpufreq: kirkwood: convert to devm_platform_ioremap_resource
@ 2019-12-15 14:05 Yangtao Li
  2019-12-15 14:05 ` [PATCH 2/2] cpufreq: tegra186: " Yangtao Li
  2019-12-16  4:07 ` [PATCH 1/2] cpufreq: kirkwood: " Viresh Kumar
  0 siblings, 2 replies; 3+ messages in thread
From: Yangtao Li @ 2019-12-15 14:05 UTC (permalink / raw)
  To: rjw, viresh.kumar, thierry.reding, jonathanh
  Cc: linux-pm, linux-kernel, linux-tegra, Yangtao Li

Use devm_platform_ioremap_resource() to simplify code.

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
 drivers/cpufreq/kirkwood-cpufreq.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/cpufreq/kirkwood-cpufreq.c b/drivers/cpufreq/kirkwood-cpufreq.c
index cb74bdc5baaa..70ad8fe1d78b 100644
--- a/drivers/cpufreq/kirkwood-cpufreq.c
+++ b/drivers/cpufreq/kirkwood-cpufreq.c
@@ -102,13 +102,11 @@ static struct cpufreq_driver kirkwood_cpufreq_driver = {
 static int kirkwood_cpufreq_probe(struct platform_device *pdev)
 {
 	struct device_node *np;
-	struct resource *res;
 	int err;
 
 	priv.dev = &pdev->dev;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	priv.base = devm_ioremap_resource(&pdev->dev, res);
+	priv.base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(priv.base))
 		return PTR_ERR(priv.base);
 
-- 
2.17.1


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

* [PATCH 2/2] cpufreq: tegra186: convert to devm_platform_ioremap_resource
  2019-12-15 14:05 [PATCH 1/2] cpufreq: kirkwood: convert to devm_platform_ioremap_resource Yangtao Li
@ 2019-12-15 14:05 ` Yangtao Li
  2019-12-16  4:07 ` [PATCH 1/2] cpufreq: kirkwood: " Viresh Kumar
  1 sibling, 0 replies; 3+ messages in thread
From: Yangtao Li @ 2019-12-15 14:05 UTC (permalink / raw)
  To: rjw, viresh.kumar, thierry.reding, jonathanh
  Cc: linux-pm, linux-kernel, linux-tegra, Yangtao Li

Use devm_platform_ioremap_resource() to simplify code.

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
 drivers/cpufreq/tegra186-cpufreq.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/cpufreq/tegra186-cpufreq.c b/drivers/cpufreq/tegra186-cpufreq.c
index bcecb068b51b..2e233ad72758 100644
--- a/drivers/cpufreq/tegra186-cpufreq.c
+++ b/drivers/cpufreq/tegra186-cpufreq.c
@@ -187,7 +187,6 @@ static int tegra186_cpufreq_probe(struct platform_device *pdev)
 {
 	struct tegra186_cpufreq_data *data;
 	struct tegra_bpmp *bpmp;
-	struct resource *res;
 	unsigned int i = 0, err;
 
 	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
@@ -205,8 +204,7 @@ static int tegra186_cpufreq_probe(struct platform_device *pdev)
 	if (IS_ERR(bpmp))
 		return PTR_ERR(bpmp);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	data->regs = devm_ioremap_resource(&pdev->dev, res);
+	data->regs = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(data->regs)) {
 		err = PTR_ERR(data->regs);
 		goto put_bpmp;
-- 
2.17.1


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

* Re: [PATCH 1/2] cpufreq: kirkwood: convert to devm_platform_ioremap_resource
  2019-12-15 14:05 [PATCH 1/2] cpufreq: kirkwood: convert to devm_platform_ioremap_resource Yangtao Li
  2019-12-15 14:05 ` [PATCH 2/2] cpufreq: tegra186: " Yangtao Li
@ 2019-12-16  4:07 ` Viresh Kumar
  1 sibling, 0 replies; 3+ messages in thread
From: Viresh Kumar @ 2019-12-16  4:07 UTC (permalink / raw)
  To: Yangtao Li
  Cc: rjw, thierry.reding, jonathanh, linux-pm, linux-kernel,
	linux-tegra

On 15-12-19, 14:05, Yangtao Li wrote:
> Use devm_platform_ioremap_resource() to simplify code.
> 
> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> ---
>  drivers/cpufreq/kirkwood-cpufreq.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/cpufreq/kirkwood-cpufreq.c b/drivers/cpufreq/kirkwood-cpufreq.c
> index cb74bdc5baaa..70ad8fe1d78b 100644
> --- a/drivers/cpufreq/kirkwood-cpufreq.c
> +++ b/drivers/cpufreq/kirkwood-cpufreq.c
> @@ -102,13 +102,11 @@ static struct cpufreq_driver kirkwood_cpufreq_driver = {
>  static int kirkwood_cpufreq_probe(struct platform_device *pdev)
>  {
>  	struct device_node *np;
> -	struct resource *res;
>  	int err;
>  
>  	priv.dev = &pdev->dev;
>  
> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -	priv.base = devm_ioremap_resource(&pdev->dev, res);
> +	priv.base = devm_platform_ioremap_resource(pdev, 0);
>  	if (IS_ERR(priv.base))
>  		return PTR_ERR(priv.base);
>  

Applied both. Thanks.

-- 
viresh

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

end of thread, other threads:[~2019-12-16  4:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-15 14:05 [PATCH 1/2] cpufreq: kirkwood: convert to devm_platform_ioremap_resource Yangtao Li
2019-12-15 14:05 ` [PATCH 2/2] cpufreq: tegra186: " Yangtao Li
2019-12-16  4:07 ` [PATCH 1/2] cpufreq: kirkwood: " Viresh Kumar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).