Commit 095e5d40 authored by Tommaso Merciai's avatar Tommaso Merciai Committed by Hans Verkuil
Browse files

media: rzg2l-cru: Fix typo in rzg2l_cru_of_id_table struct



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: default avatarTommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Reviewed-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Link: https://lore.kernel.org/r/20250526075236.13489-1-tommaso.merciai.xr@bp.renesas.com


Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
parent aa89281b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -403,7 +403,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,
@@ -422,7 +422,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 */ }
};