summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/kms_plane.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index fc530d2cf..164dacf40 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -391,9 +391,12 @@ test_plane_panning(data_t *data, enum pipe pipe)
test_init(data, pipe);
- for_each_memory_region(r, data->drm_fd)
- if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE)
- mem_size = r->cpu_size;
+ if (is_i915_device(data->drm_fd)) {
+ for_each_memory_region(r, data->drm_fd)
+ if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE)
+ mem_size = r->cpu_size;
+
+ }
for_each_connector_mode(output) {
drmModeModeInfo *m = &output->config.connector->modes[j__];