From: Emmanuel Vadot Date: Mon, 2 Jul 2018 12:33:14 +0000 (+0200) Subject: video: arm: rpi: Add brcm,bcm2708-fb compatible X-Git-Tag: v2018.07~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=425daac481c1374313f8eae6c159368e12dc4043;p=platform%2Fkernel%2Fu-boot.git video: arm: rpi: Add brcm,bcm2708-fb compatible When using CONFIG_OF_BOARD on rpi to use the dtb provided by the RaspberryPi Fundation, the compatible string isn't the same, resulting in not-functional video in u-boot. Signed-off-by: Oleksandr Tymoshenko Signed-off-by: Emmanuel Vadot --- diff --git a/drivers/video/bcm2835.c b/drivers/video/bcm2835.c index 602d87d..bc41090 100644 --- a/drivers/video/bcm2835.c +++ b/drivers/video/bcm2835.c @@ -48,6 +48,7 @@ static int bcm2835_video_probe(struct udevice *dev) static const struct udevice_id bcm2835_video_ids[] = { { .compatible = "brcm,bcm2835-hdmi" }, + { .compatible = "brcm,bcm2708-fb" }, { } };