Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit baaa5cfb authored by Chris Wilson's avatar Chris Wilson Committed by Daniel Vetter
Browse files

drm/i915: Update meaning of debugfs object's pin_flag



Since the pin_ioctl is defunct, we only care about whether an object is
pinned into the display for debug purposes.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 1f30a614
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ static int i915_capabilities(struct seq_file *m, void *data)

static const char *get_pin_flag(struct drm_i915_gem_object *obj)
{
	if (i915_gem_obj_is_pinned(obj))
	if (obj->pin_display)
		return "p";
	else
		return " ";