From 5f227ac2104e08ad434c78a472ef9ac21ebdfe73 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 4 Jan 2018 11:33:16 -0800 Subject: [PATCH] broadcom/vc5: Enable the driver on V3D 4.1 --- src/gallium/drivers/vc5/vc5_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/vc5/vc5_screen.c b/src/gallium/drivers/vc5/vc5_screen.c index 7c1d855..898f7a2 100644 --- a/src/gallium/drivers/vc5/vc5_screen.c +++ b/src/gallium/drivers/vc5/vc5_screen.c @@ -560,7 +560,7 @@ vc5_get_device_info(struct vc5_screen *screen) uint32_t minor = (ident1.value >> 0) & 0xf; screen->devinfo.ver = major * 10 + minor; - if (screen->devinfo.ver != 33) { + if (screen->devinfo.ver != 33 && screen->devinfo.ver != 41) { fprintf(stderr, "V3D %d.%d not supported by this version of Mesa.\n", screen->devinfo.ver / 10, -- 2.7.4