diff options
| author | Peter Robinson <[email protected]> | 2026-04-21 09:51:59 +0100 |
|---|---|---|
| committer | Peter Robinson <[email protected]> | 2026-05-26 12:11:50 +0100 |
| commit | 812aca5791404ad5df469fe3240638573e39e063 (patch) | |
| tree | 8e708036958395d4667986bfe9fbafc1ad95fcac | |
| parent | 76d62273bc8a5dc126ed79ed0fb65e5a97359577 (diff) | |
video: arm: rpi: Add brcm,bcm2712-hdmi0 compatible
The 'brcm,bcm2712-hdmi0' compatible string is used on RPi5.
There appears to be no change that impacts early boot output
on the display controller so add the RPi5 compatible string.
Signed-off-by: Peter Robinson <[email protected]>
Reviewed-by: Matthias Brugger <[email protected]>
| -rw-r--r-- | drivers/video/bcm2835.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/bcm2835.c b/drivers/video/bcm2835.c index 0c81e606622..0e0cc1979eb 100644 --- a/drivers/video/bcm2835.c +++ b/drivers/video/bcm2835.c @@ -66,6 +66,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,bcm2712-hdmi0" }, { .compatible = "brcm,bcm2708-fb" }, #if !IS_ENABLED(CONFIG_VIDEO_DT_SIMPLEFB) { .compatible = "simple-framebuffer" }, |
