linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] media: rzg2l-cru: Fix typo in rzg2l_cru_of_id_table struct
@ 2025-05-26  7:52 Tommaso Merciai
  2025-05-26  8:05 ` Geert Uytterhoeven
  2025-05-26 10:51 ` Laurent Pinchart
  0 siblings, 2 replies; 3+ messages in thread
From: Tommaso Merciai @ 2025-05-26  7:52 UTC (permalink / raw)
  To: tomm.merciai
  Cc: linux-renesas-soc, biju.das.jz, prabhakar.mahadev-lad.rj,
	Tommaso Merciai, Mauro Carvalho Chehab, Laurent Pinchart,
	Hans Verkuil, Uwe Kleine-König, linux-media, linux-kernel

Correct the misnamed .data member for the RZ/G2L CRU. Rename
`rzgl2_cru_info` to `rzg2l_cru_info` to match the intended
naming convention.

Signed-off-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
---
 drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
index c2528cb3ba4f..a1ae662b2ec6 100644
--- a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
+++ b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
@@ -421,7 +421,7 @@ static const u16 rzg2l_cru_regs[] = {
 	[ICnDMR] = 0x26c,
 };
 
-static const struct rzg2l_cru_info rzgl2_cru_info = {
+static const struct rzg2l_cru_info rzg2l_cru_info = {
 	.max_width = 2800,
 	.max_height = 4095,
 	.image_conv = ICnMC,
@@ -440,7 +440,7 @@ static const struct of_device_id rzg2l_cru_of_id_table[] = {
 	},
 	{
 		.compatible = "renesas,rzg2l-cru",
-		.data = &rzgl2_cru_info,
+		.data = &rzg2l_cru_info,
 	},
 	{ /* sentinel */ }
 };
-- 
2.43.0


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

* Re: [PATCH] media: rzg2l-cru: Fix typo in rzg2l_cru_of_id_table struct
  2025-05-26  7:52 [PATCH] media: rzg2l-cru: Fix typo in rzg2l_cru_of_id_table struct Tommaso Merciai
@ 2025-05-26  8:05 ` Geert Uytterhoeven
  2025-05-26 10:51 ` Laurent Pinchart
  1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2025-05-26  8:05 UTC (permalink / raw)
  To: Tommaso Merciai
  Cc: tomm.merciai, linux-renesas-soc, biju.das.jz,
	prabhakar.mahadev-lad.rj, Mauro Carvalho Chehab, Laurent Pinchart,
	Hans Verkuil, Uwe Kleine-König, linux-media, linux-kernel

On Mon, 26 May 2025 at 09:53, Tommaso Merciai
<tommaso.merciai.xr@bp.renesas.com> wrote:
> Correct the misnamed .data member for the RZ/G2L CRU. Rename
> `rzgl2_cru_info` to `rzg2l_cru_info` to match the intended
> naming convention.
>
> Signed-off-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH] media: rzg2l-cru: Fix typo in rzg2l_cru_of_id_table struct
  2025-05-26  7:52 [PATCH] media: rzg2l-cru: Fix typo in rzg2l_cru_of_id_table struct Tommaso Merciai
  2025-05-26  8:05 ` Geert Uytterhoeven
@ 2025-05-26 10:51 ` Laurent Pinchart
  1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2025-05-26 10:51 UTC (permalink / raw)
  To: Tommaso Merciai
  Cc: tomm.merciai, linux-renesas-soc, biju.das.jz,
	prabhakar.mahadev-lad.rj, Mauro Carvalho Chehab, Hans Verkuil,
	Uwe Kleine-König, linux-media, linux-kernel

On Mon, May 26, 2025 at 09:52:33AM +0200, Tommaso Merciai wrote:
> Correct the misnamed .data member for the RZ/G2L CRU. Rename
> `rzgl2_cru_info` to `rzg2l_cru_info` to match the intended
> naming convention.
> 
> Signed-off-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>

> ---
>  drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
> index c2528cb3ba4f..a1ae662b2ec6 100644
> --- a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
> +++ b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
> @@ -421,7 +421,7 @@ static const u16 rzg2l_cru_regs[] = {
>  	[ICnDMR] = 0x26c,
>  };
>  
> -static const struct rzg2l_cru_info rzgl2_cru_info = {
> +static const struct rzg2l_cru_info rzg2l_cru_info = {
>  	.max_width = 2800,
>  	.max_height = 4095,
>  	.image_conv = ICnMC,
> @@ -440,7 +440,7 @@ static const struct of_device_id rzg2l_cru_of_id_table[] = {
>  	},
>  	{
>  		.compatible = "renesas,rzg2l-cru",
> -		.data = &rzgl2_cru_info,
> +		.data = &rzg2l_cru_info,
>  	},
>  	{ /* sentinel */ }
>  };

-- 
Regards,

Laurent Pinchart

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

end of thread, other threads:[~2025-05-26 10:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-26  7:52 [PATCH] media: rzg2l-cru: Fix typo in rzg2l_cru_of_id_table struct Tommaso Merciai
2025-05-26  8:05 ` Geert Uytterhoeven
2025-05-26 10:51 ` Laurent Pinchart

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