mirror of https://gitee.com/openkylin/linux.git
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: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
1f30a61482
commit
baaa5cfb42
|
@ -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 " ";
|
||||
|
|
Loading…
Reference in New Issue