Displaying 1 result from an estimated 1 matches for "0bebc72af5c3".
2024 Jun 14
0
[PATCH v6 2/8] drm: Support per-plane async flip configuration
...d] Only primary planes can be changed during async flip\n",
> + "[PLANE:%d] does not support async flips\n",
> obj->id);
> ret = -EINVAL;
> break;
> diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
> index 9507542121fa..0bebc72af5c3 100644
> --- a/include/drm/drm_plane.h
> +++ b/include/drm/drm_plane.h
> @@ -786,6 +786,11 @@ struct drm_plane {
> * @kmsg_panic: Used to register a panic notifier for this plane
> */
> struct kmsg_dumper kmsg_panic;
> +
> + /**
> + * @async_flip: indicates if a...