On 3/27/26 18:18, Simon Ser wrote: > struct drm_syncobj_eventfd was documented, but > DRM_IOCTL_SYNCOBJ_EVENTFD was not. This prevents references to this > define from being properly linkified in docs. > > Signed-off-by: Simon Ser <[email protected]> > Cc: Simona Vetter <[email protected]> > Cc: Pekka Paalanen <[email protected]> > Cc: Daniel Stone <[email protected]> > Cc: Michel Dänzer <[email protected]> > Cc: Christian König <[email protected]>
Reviewed-by: Christian König <[email protected]> > --- > include/uapi/drm/drm.h | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/include/uapi/drm/drm.h b/include/uapi/drm/drm.h > index 27cc159c1d27..495462e44a17 100644 > --- a/include/uapi/drm/drm.h > +++ b/include/uapi/drm/drm.h > @@ -1323,6 +1323,13 @@ extern "C" { > */ > #define DRM_IOCTL_MODE_GETFB2 DRM_IOWR(0xCE, struct > drm_mode_fb_cmd2) > > +/** > + * DRM_IOCTL_SYNCOBJ_EVENTFD - Register an eventfd to be signalled by a > syncobj. > + * > + * This can be used to integrate a syncobj in an event loop. > + * > + * The IOCTL argument is a struct drm_syncobj_eventfd. > + */ > #define DRM_IOCTL_SYNCOBJ_EVENTFD DRM_IOWR(0xCF, struct > drm_syncobj_eventfd) > > /**
