From 8f22e8eaba8aea1596a86d5eba19ef346f8de0d5 Mon Sep 17 00:00:00 2001 From: Pantelis Antoniou Date: Wed, 31 Oct 2012 17:56:24 +0200 Subject: [PATCH] da8xx: Fix revision check on the da8xx driver The revision check fails for the beaglebone; Add new revision ID. Signed-off-by: Pantelis Antoniou Acked-by: Manjunathappa, Prakash Signed-off-by: Tomi Valkeinen --- drivers/video/da8xx-fb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c index f2ceb65f523b..46534e00fe01 100644 --- a/drivers/video/da8xx-fb.c +++ b/drivers/video/da8xx-fb.c @@ -1264,6 +1264,7 @@ static int __devinit fb_probe(struct platform_device *device) lcd_revision = LCD_VERSION_1; break; case 0x4F200800: + case 0x4F201000: lcd_revision = LCD_VERSION_2; break; default: -- 2.39.2