Commit 6321a722 authored by Ville Syrjälä's avatar Ville Syrjälä

drm/i915: s/0/NULL/

Use NULL where appropriate.

drivers/gpu/drm/i915/gt/intel_ring_submission.c:1210:24: warning: Using plain integer as NULL pointer
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210712161815.24776-2-ville.syrjala@linux.intel.comReviewed-by: default avatarMatthew Auld <matthew.auld@intel.com>
parent ac5a2dff
...@@ -1265,7 +1265,7 @@ static struct i915_vma *gen7_ctx_vma(struct intel_engine_cs *engine) ...@@ -1265,7 +1265,7 @@ static struct i915_vma *gen7_ctx_vma(struct intel_engine_cs *engine)
int size, err; int size, err;
if (GRAPHICS_VER(engine->i915) != 7 || engine->class != RENDER_CLASS) if (GRAPHICS_VER(engine->i915) != 7 || engine->class != RENDER_CLASS)
return 0; return NULL;
err = gen7_ctx_switch_bb_setup(engine, NULL /* probe size */); err = gen7_ctx_switch_bb_setup(engine, NULL /* probe size */);
if (err < 0) if (err < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment