summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_vm.c
diff options
context:
space:
mode:
authorJani Nikula <jani.nikula@intel.com>2024-01-17 15:20:43 +0300
committerJani Nikula <jani.nikula@intel.com>2024-01-19 15:35:53 +0300
commit480ea9e306c7fdbfb24b0af046c28c10b98a74ab (patch)
tree36e37014d83a1bdea0f82076eedc27ddad5a7ffd /drivers/gpu/drm/xe/xe_vm.c
parent3cacf808c9d8e302ff7cd94579a5d3c540232f9e (diff)
downloadlinux-480ea9e306c7fdbfb24b0af046c28c10b98a74ab.tar.xz
drm/xe: make gpuvm_ops const
Place the function pointers in rodata. Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240117122044.1544174-4-jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_vm.c')
-rw-r--r--drivers/gpu/drm/xe/xe_vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index a7e7a0b24099..7ea0f151d223 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1054,7 +1054,7 @@ static struct drm_gpuva_op *xe_vm_op_alloc(void)
static void xe_vm_free(struct drm_gpuvm *gpuvm);
-static struct drm_gpuvm_ops gpuvm_ops = {
+static const struct drm_gpuvm_ops gpuvm_ops = {
.op_alloc = xe_vm_op_alloc,
.vm_bo_validate = xe_gpuvm_validate,
.vm_free = xe_vm_free,