]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915/gem: fix typo in comment (I915_EXEC_NO_RELOC)
authorMarlon Henrique Sanches <marlonsanches@estudante.ufscar.br>
Mon, 13 Oct 2025 18:31:23 +0000 (15:31 -0300)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Mon, 13 Oct 2025 19:06:08 +0000 (15:06 -0400)
The comment referenced the flag name incorrectly as 'I915_EXEC_NORELOC'
(missing underscore). This patch corrects the spelling in the comment
only; there is no functional change.

Signed-off-by: Marlon Henrique Sanches <marlonsanches@estudante.ufscar.br>
Link: https://lore.kernel.org/r/20251013183123.438573-1-marlonsanches@estudante.ufscar.br
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c

index f243f8a5215d8c074e077edd451e0fc6763a9dd3..4eafc167a29957cb1120c321131e9f058fbe8240 100644 (file)
@@ -142,7 +142,7 @@ enum {
  * we want to leave the object where it is and for all the existing relocations
  * to match. If the object is given a new address, or if userspace thinks the
  * object is elsewhere, we have to parse all the relocation entries and update
- * the addresses. Userspace can set the I915_EXEC_NORELOC flag to hint that
+ * the addresses. Userspace can set the I915_EXEC_NO_RELOC flag to hint that
  * all the target addresses in all of its objects match the value in the
  * relocation entries and that they all match the presumed offsets given by the
  * list of execbuffer objects. Using this knowledge, we know that if we haven't