From: Eric Anholt Date: Thu, 9 Nov 2017 23:51:56 +0000 (-0800) Subject: broadcom/vc4: Fix simulator mode for the MADVISE usage. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=62deeaa23a3f0d49058defffdb699e9378ef225d;p=mesa.git broadcom/vc4: Fix simulator mode for the MADVISE usage. --- diff --git a/src/gallium/drivers/vc4/vc4_simulator.c b/src/gallium/drivers/vc4/vc4_simulator.c index a73e409694c..3afb16e1fcf 100644 --- a/src/gallium/drivers/vc4/vc4_simulator.c +++ b/src/gallium/drivers/vc4/vc4_simulator.c @@ -619,6 +619,10 @@ vc4_simulator_get_param_ioctl(int fd, struct drm_vc4_get_param *args) args->value = true; return 0; + case DRM_VC4_PARAM_SUPPORTS_MADVISE: + errno = -EINVAL; + return -1; + case DRM_VC4_PARAM_V3D_IDENT0: args->value = 0x02000000; return 0;