diff options
author | Danilo Krummrich <[email protected]> | 2024-07-15 15:51:33 +0200 |
---|---|---|
committer | Danilo Krummrich <[email protected]> | 2024-07-16 16:17:01 +0200 |
commit | eeb1f825b5dc68047a0556e5ae86d1467920db41 (patch) | |
tree | 8bb6d2b19c663129e45439063f2e981dc60462cd | |
parent | d60c429610a14560085d98fa6f4cdb43040ca8f0 (diff) |
drm/gpuvm: fix missing dependency to DRM_EXEC
In commit 50c1a36f594b ("drm/gpuvm: track/lock/validate external/evicted
objects") we started using drm_exec, but did not select DRM_EXEC in the
Kconfig for DRM_GPUVM, fix this.
Cc: Christian König <[email protected]>
Cc: Boris Brezillon <[email protected]>
Cc: Thomas Hellström <[email protected]>
Fixes: 50c1a36f594b ("drm/gpuvm: track/lock/validate external/evicted objects")
Signed-off-by: Danilo Krummrich <[email protected]>
Reviewed-by: Christian König <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index d0aa277fc3bf..d08d79bbb0f6 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -254,6 +254,7 @@ config DRM_EXEC config DRM_GPUVM tristate depends on DRM + select DRM_EXEC help GPU-VM representation providing helpers to manage a GPUs virtual address space |