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

Commit 352b20dc authored by Thomas Hellstrom's avatar Thomas Hellstrom
Browse files

drm/vmwgfx: Reinstate the legacy display system dirty callback



It somehow got lost in a rewrite.

Signed-off-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: default avatarSinclair Yeh <syeh@vmware.com>
parent a278724a
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -632,10 +632,13 @@ static int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer *framebuffer,
						  true,
						  NULL);
		break;
	case vmw_du_legacy:
		ret = vmw_kms_ldu_do_dmabuf_dirty(dev_priv, &vfbd->base, 0, 0,
						  clips, num_clips, increment);
		break;
	default:
		ret = -ENOSYS;
		WARN_ONCE(true,
			  "Dirty called with invalid display system.\n");
		ret = -EINVAL;
		WARN_ONCE(true, "Dirty called with invalid display system.\n");
		break;
	}