projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf68f0c
)
drm/i915/gtt: Fix typo in fill_px() macro
author
Chris Wilson
<chris@chris-wilson.co.uk>
Wed, 6 Jun 2018 20:51:28 +0000
(21:51 +0100)
committer
Chris Wilson
<chris@chris-wilson.co.uk>
Wed, 6 Jun 2018 21:49:34 +0000
(22:49 +0100)
The macro declared the ppgtt parameter but implicitly used the local vm
instead.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Matthew Auld <matthew.william.auld@gmail.com>
Reviewed-by: Matthew Auld <matthew.william.auld@gmail.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20180606205128.25952-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/i915_gem_gtt.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_gem_gtt.c
b/drivers/gpu/drm/i915/i915_gem_gtt.c
index 029a5f4fbd92b5dc157bf8dec5efed8f91d9654b..2b4a40a32b765ab9b44ec1e06c6a1bb272377bc1 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_gem_gtt.c
+++ b/
drivers/gpu/drm/i915/i915_gem_gtt.c
@@
-528,8
+528,8
@@
static void cleanup_page_dma(struct i915_address_space *vm,
#define setup_px(vm, px) setup_page_dma((vm), px_base(px))
#define cleanup_px(vm, px) cleanup_page_dma((vm), px_base(px))
-#define fill_px(
ppgtt
, px, v) fill_page_dma((vm), px_base(px), (v))
-#define fill32_px(
ppgtt
, px, v) fill_page_dma_32((vm), px_base(px), (v))
+#define fill_px(
vm
, px, v) fill_page_dma((vm), px_base(px), (v))
+#define fill32_px(
vm
, px, v) fill_page_dma_32((vm), px_base(px), (v))
static void fill_page_dma(struct i915_address_space *vm,
struct i915_page_dma *p,