media: platform: renesas-ceu: Fix unused variable warning
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Thu, 17 Mar 2022 20:49:03 +0000 (21:49 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 13 May 2022 09:02:18 +0000 (11:02 +0200)
The ceu_data_rz variable is unused when CONFIG_OF isn't set. This
generates a compiler warning. Fix it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reported-by: kernel test robot <lkp@intel.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/platform/renesas/renesas-ceu.c

index 2e8dbac..f70f91b 100644 (file)
@@ -1606,15 +1606,15 @@ struct ceu_data {
        u32 irq_mask;
 };
 
-static const struct ceu_data ceu_data_rz = {
-       .irq_mask = CEU_CETCR_ALL_IRQS_RZ,
-};
-
 static const struct ceu_data ceu_data_sh4 = {
        .irq_mask = CEU_CETCR_ALL_IRQS_SH4,
 };
 
 #if IS_ENABLED(CONFIG_OF)
+static const struct ceu_data ceu_data_rz = {
+       .irq_mask = CEU_CETCR_ALL_IRQS_RZ,
+};
+
 static const struct of_device_id ceu_of_match[] = {
        { .compatible = "renesas,r7s72100-ceu", .data = &ceu_data_rz },
        { .compatible = "renesas,r8a7740-ceu", .data = &ceu_data_rz },