CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/06/14 09:20:07
Modified files:
sys/dev/pci/drm: drm_linux.c
sys/dev/pci/drm/i915: i915_gem.c i915_gem_fence_reg.c
sys/dev/pci/drm/i915/gem: i915_gem_pages.c
sys/dev/pci/drm/i915/gt: intel_gtt.c
sys/dev/pci/drm/include/linux: highmem.h
sys/dev/pci/drm/ttm: ttm_bo_util.c
Log message:
rename our kunmap() to kunmap_va()
In linux kunmap() has a page struct * argument our kunmap() has a void *
argument which results in uncoverted uses building but doing the wrong
thing. Renaming will catch any codepaths that need to be changed at
compile time.