summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/vc5
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2018-01-04 11:33:16 -0800
committerEric Anholt <eric@anholt.net>2018-01-12 21:54:12 -0800
commit5f227ac2104e08ad434c78a472ef9ac21ebdfe73 (patch)
tree6d88af463bdd6c2f06c7393e9fa2548fba5c9ae2 /src/gallium/drivers/vc5
parent39ce1ab7baa6e8db1afceeee875f04190147b5d6 (diff)
broadcom/vc5: Enable the driver on V3D 4.1
Diffstat (limited to 'src/gallium/drivers/vc5')
-rw-r--r--src/gallium/drivers/vc5/vc5_screen.c2
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 7c1d855a26..898f7a2d27 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,