diff options
Diffstat (limited to 'src/gallium/drivers/vc5/vc5_screen.c')
-rw-r--r-- | src/gallium/drivers/vc5/vc5_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc5/vc5_screen.c b/src/gallium/drivers/vc5/vc5_screen.c index 7c1d855a266..898f7a2d270 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, |