On Fri, 22 May 2026, Borah, Chaitanya Kumar wrote:
On 5/21/2026 9:22 PM, Michał Grzelak wrote:
Kernel-doc of drmm_add_mode_or_reset() references @releases which is not
on argument list. Swap '@' between 'releases' and 'action' words to fix
the documentation.
s/drmm_add_mode_or_reset/drmm_add_action
Title would like to see that as well...
BR,
Michał
Signed-off-by: Michał Grzelak <[email protected]>
---
include/drm/drm_managed.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_managed.h b/include/drm/drm_managed.h
index 72bfac002c06..72d0d68be226 100644
--- a/include/drm/drm_managed.h
+++ b/include/drm/drm_managed.h
@@ -18,7 +18,7 @@ typedef void (*drmres_release_t)(struct drm_device *dev,
void *res);
* @action: function which should be called when @dev is released
* @data: opaque pointer, passed to @action
*
- * This function adds the @release action with optional parameter @data to
the
+ * This function adds the release @action with optional parameter @data to
the
* list of cleanup actions for @dev. The cleanup actions will be run in
reverse
* order in the final drm_dev_put() call for @dev.
*/