Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Link: https://lore.kernel.org/r/20250526075236.13489-1-tommaso.merciai.xr@bp.renesas.com
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>

authored by

Tommaso Merciai and committed by
Hans Verkuil
095e5d40 aa89281b

+2 -2
+2 -2
drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
··· 403 403 [ICnDMR] = 0x26c, 404 404 }; 405 405 406 - static const struct rzg2l_cru_info rzgl2_cru_info = { 406 + static const struct rzg2l_cru_info rzg2l_cru_info = { 407 407 .max_width = 2800, 408 408 .max_height = 4095, 409 409 .image_conv = ICnMC, ··· 422 422 }, 423 423 { 424 424 .compatible = "renesas,rzg2l-cru", 425 - .data = &rzgl2_cru_info, 425 + .data = &rzg2l_cru_info, 426 426 }, 427 427 { /* sentinel */ } 428 428 };