Fixes: bbc6d68b4e40 ("drm/vc4: hdmi: Support the BCM2711 HDMI controllers") Signed-off-by: kbuild test robot --- vc4_hdmi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/vc4/vc4_hdmi.c b/drivers/gpu/drm/vc4/vc4_hdmi.c index 86ecc7e894207c..b3b706143dd897 100644 --- a/drivers/gpu/drm/vc4/vc4_hdmi.c +++ b/drivers/gpu/drm/vc4/vc4_hdmi.c @@ -1682,7 +1682,7 @@ struct vc4_hdmi_variant bcm2835_variant = { .phy_rng_disable = vc4_hdmi_phy_rng_disable, }; -struct vc4_hdmi_variant bcm2711_hdmi0_variant = { +static struct vc4_hdmi_variant bcm2711_hdmi0_variant = { .id = 0, .max_pixel_clock = 297000000, .registers = vc5_hdmi_hdmi0_fields, @@ -1703,7 +1703,7 @@ struct vc4_hdmi_variant bcm2711_hdmi0_variant = { .phy_rng_disable = vc5_hdmi_phy_rng_disable, }; -struct vc4_hdmi_variant bcm2711_hdmi1_variant = { +static struct vc4_hdmi_variant bcm2711_hdmi1_variant = { .id = 1, .max_pixel_clock = 297000000, .registers = vc5_hdmi_hdmi1_fields,