Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/xe: Remove extra spaces in xe_vm.c

There are extra spaces in xe_vm_bind_ioctl_validate_bo(), remove those.

Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20250320211519.632432-1-dev@lankhorst.se
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>

+3 -3
+3 -3
drivers/gpu/drm/xe/xe_vm.c
··· 3243 3243 XE_64K_PAGE_MASK) || 3244 3244 XE_IOCTL_DBG(xe, addr & XE_64K_PAGE_MASK) || 3245 3245 XE_IOCTL_DBG(xe, range & XE_64K_PAGE_MASK)) { 3246 - return -EINVAL; 3246 + return -EINVAL; 3247 3247 } 3248 3248 } 3249 3249 ··· 3251 3251 if (bo->cpu_caching) { 3252 3252 if (XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE && 3253 3253 bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB)) { 3254 - return -EINVAL; 3254 + return -EINVAL; 3255 3255 } 3256 3256 } else if (XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE)) { 3257 3257 /* ··· 3260 3260 * how it was mapped on the CPU. Just assume is it 3261 3261 * potentially cached on CPU side. 3262 3262 */ 3263 - return -EINVAL; 3263 + return -EINVAL; 3264 3264 } 3265 3265 3266 3266 /* If a BO is protected it can only be mapped if the key is still valid */