From: Nicolas Saenz Julienne Date: Tue, 12 Jan 2021 12:55:31 +0000 (+0100) Subject: video: arm: rpi: Add brcm,bcm2711-hdmi0 compatible X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=0059ef0be903a1f0a9afe5259fb2e0874f78a8ac;p=u-boot.git video: arm: rpi: Add brcm,bcm2711-hdmi0 compatible The 'brcm,bcm2711-hdmi0' compatible string is used on RPi4 instead of 'brcm,bcm2835-hdmi' since the IP core was upgraded (now called VC6 instead of VC4). This has no functional change as far as u-boot driver is concerned. So simply add the compatible string. Signed-off-by: Nicolas Saenz Julienne Tested-by: Peter Robinson Signed-off-by: Matthias Brugger --- diff --git a/drivers/video/bcm2835.c b/drivers/video/bcm2835.c index 9326999cd3..c2962932c9 100644 --- a/drivers/video/bcm2835.c +++ b/drivers/video/bcm2835.c @@ -52,6 +52,7 @@ static int bcm2835_video_probe(struct udevice *dev) static const struct udevice_id bcm2835_video_ids[] = { { .compatible = "brcm,bcm2835-hdmi" }, + { .compatible = "brcm,bcm2711-hdmi0" }, { .compatible = "brcm,bcm2708-fb" }, { } };