media: platform: rzg2l-cru: rzg2l-csi2: Add missing MODULE_DEVICE_TABLE
authorBiju Das <biju.das.jz@bp.renesas.com>
Wed, 31 Jul 2024 16:49:32 +0000 (17:49 +0100)
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Fri, 23 Aug 2024 12:20:35 +0000 (15:20 +0300)
The rzg2l-csi2 driver can be compiled as a module, but lacks
MODULE_DEVICE_TABLE() and will therefore not be loaded automatically.
Fix this.

Fixes: 51e8415e39a9 ("media: platform: Add Renesas RZ/G2L MIPI CSI-2 receiver driver")
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Link: https://lore.kernel.org/r/20240731164935.308994-1-biju.das.jz@bp.renesas.com
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
drivers/media/platform/renesas/rzg2l-cru/rzg2l-csi2.c

index e68fcdaea207aa3a2386940628deed53e5f2ee07..c7fdee347ac8aeb14582fa2885deb4fb57af5e1d 100644 (file)
@@ -865,6 +865,7 @@ static const struct of_device_id rzg2l_csi2_of_table[] = {
        { .compatible = "renesas,rzg2l-csi2", },
        { /* sentinel */ }
 };
+MODULE_DEVICE_TABLE(of, rzg2l_csi2_of_table);
 
 static struct platform_driver rzg2l_csi2_pdrv = {
        .remove_new = rzg2l_csi2_remove,