linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] media: rcar_drif: Make use of the helper function devm_platform_ioremap_resource()
@ 2021-09-01  5:55 Cai Huoqing
  2021-09-01  8:19 ` Hans Verkuil
  0 siblings, 1 reply; 3+ messages in thread
From: Cai Huoqing @ 2021-09-01  5:55 UTC (permalink / raw)
  To: caihuoqing
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, linux-media,
	linux-renesas-soc, linux-kernel

Use the devm_platform_ioremap_resource() helper instead of
calling platform_get_resource() and devm_ioremap_resource()
separately

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
---
 drivers/media/platform/rcar_drif.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/media/platform/rcar_drif.c b/drivers/media/platform/rcar_drif.c
index a505d991548b..f0a1edb57841 100644
--- a/drivers/media/platform/rcar_drif.c
+++ b/drivers/media/platform/rcar_drif.c
@@ -1376,7 +1376,6 @@ static int rcar_drif_probe(struct platform_device *pdev)
 	struct rcar_drif_sdr *sdr;
 	struct device_node *np;
 	struct rcar_drif *ch;
-	struct resource	*res;
 	int ret;
 
 	/* Reserve memory for enabled channel */
@@ -1395,8 +1394,7 @@ static int rcar_drif_probe(struct platform_device *pdev)
 	}
 
 	/* Register map */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	ch->base = devm_ioremap_resource(&pdev->dev, res);
+	ch->base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(ch->base))
 		return PTR_ERR(ch->base);
 
-- 
2.25.1


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

* Re: [PATCH] media: rcar_drif: Make use of the helper function devm_platform_ioremap_resource()
  2021-09-01  5:55 [PATCH] media: rcar_drif: Make use of the helper function devm_platform_ioremap_resource() Cai Huoqing
@ 2021-09-01  8:19 ` Hans Verkuil
  2021-09-01 11:03   ` Kieran Bingham
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Verkuil @ 2021-09-01  8:19 UTC (permalink / raw)
  To: Cai Huoqing
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, linux-media,
	linux-renesas-soc, linux-kernel

On 01/09/2021 07:55, Cai Huoqing wrote:
> Use the devm_platform_ioremap_resource() helper instead of
> calling platform_get_resource() and devm_ioremap_resource()
> separately
> 
> Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
> ---
>  drivers/media/platform/rcar_drif.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/media/platform/rcar_drif.c b/drivers/media/platform/rcar_drif.c
> index a505d991548b..f0a1edb57841 100644
> --- a/drivers/media/platform/rcar_drif.c
> +++ b/drivers/media/platform/rcar_drif.c
> @@ -1376,7 +1376,6 @@ static int rcar_drif_probe(struct platform_device *pdev)
>  	struct rcar_drif_sdr *sdr;
>  	struct device_node *np;
>  	struct rcar_drif *ch;
> -	struct resource	*res;
>  	int ret;
>  
>  	/* Reserve memory for enabled channel */
> @@ -1395,8 +1394,7 @@ static int rcar_drif_probe(struct platform_device *pdev)
>  	}
>  
>  	/* Register map */
> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -	ch->base = devm_ioremap_resource(&pdev->dev, res);
> +	ch->base = devm_platform_ioremap_resource(pdev, 0);
>  	if (IS_ERR(ch->base))
>  		return PTR_ERR(ch->base);
>  
> 

Compile error:

drivers/media/platform/rcar_drif.c: In function ‘rcar_drif_probe’:
drivers/media/platform/rcar_drif.c:1401:14: error: ‘res’ undeclared (first use in this function); did you mean ‘ret’?
 1401 |  ch->start = res->start;
      |              ^~~
      |              ret
drivers/media/platform/rcar_drif.c:1401:14: note: each undeclared identifier is reported only once for each function it appears in

Regards,

	Hans

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

* Re: [PATCH] media: rcar_drif: Make use of the helper function devm_platform_ioremap_resource()
  2021-09-01  8:19 ` Hans Verkuil
@ 2021-09-01 11:03   ` Kieran Bingham
  0 siblings, 0 replies; 3+ messages in thread
From: Kieran Bingham @ 2021-09-01 11:03 UTC (permalink / raw)
  To: Hans Verkuil, Cai Huoqing
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, linux-media,
	linux-renesas-soc, linux-kernel

On 01/09/2021 09:19, Hans Verkuil wrote:
> On 01/09/2021 07:55, Cai Huoqing wrote:
>> Use the devm_platform_ioremap_resource() helper instead of
>> calling platform_get_resource() and devm_ioremap_resource()
>> separately
>>
>> Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
>> ---
>>  drivers/media/platform/rcar_drif.c | 4 +---
>>  1 file changed, 1 insertion(+), 3 deletions(-)
>>
>> diff --git a/drivers/media/platform/rcar_drif.c b/drivers/media/platform/rcar_drif.c
>> index a505d991548b..f0a1edb57841 100644
>> --- a/drivers/media/platform/rcar_drif.c
>> +++ b/drivers/media/platform/rcar_drif.c
>> @@ -1376,7 +1376,6 @@ static int rcar_drif_probe(struct platform_device *pdev)
>>  	struct rcar_drif_sdr *sdr;
>>  	struct device_node *np;
>>  	struct rcar_drif *ch;
>> -	struct resource	*res;
>>  	int ret;
>>  
>>  	/* Reserve memory for enabled channel */
>> @@ -1395,8 +1394,7 @@ static int rcar_drif_probe(struct platform_device *pdev)
>>  	}
>>  
>>  	/* Register map */
>> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>> -	ch->base = devm_ioremap_resource(&pdev->dev, res);
>> +	ch->base = devm_platform_ioremap_resource(pdev, 0);

This could keep struct resource *res above and use:

	ch->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res)

With that, (and the commit message / subject updated accordingly):

Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>



>>  	if (IS_ERR(ch->base))
>>  		return PTR_ERR(ch->base);
>>  
>>
> 
> Compile error:
> 
> drivers/media/platform/rcar_drif.c: In function ‘rcar_drif_probe’:
> drivers/media/platform/rcar_drif.c:1401:14: error: ‘res’ undeclared (first use in this function); did you mean ‘ret’?
>  1401 |  ch->start = res->start;
>       |              ^~~
>       |              ret
> drivers/media/platform/rcar_drif.c:1401:14: note: each undeclared identifier is reported only once for each function it appears in
> 
> Regards,
> 
> 	Hans
> 


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

end of thread, other threads:[~2021-09-01 11:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-01  5:55 [PATCH] media: rcar_drif: Make use of the helper function devm_platform_ioremap_resource() Cai Huoqing
2021-09-01  8:19 ` Hans Verkuil
2021-09-01 11:03   ` Kieran Bingham

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).