Commit a99aff26 authored by José Expósito's avatar José Expósito Committed by Daniel Vetter

drm/connector: Document destroy hook in drmm init functions

Document that the drm_connector_funcs.destroy hook must be NULL in
drmm_connector_init() and drmm_connector_hdmi_init().
Signed-off-by: default avatarJosé Expósito <jose.exposito89@gmail.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20240804170551.33971-2-jose.exposito89@gmail.com
parent 21e97d3c
...@@ -426,6 +426,8 @@ static void drm_connector_cleanup_action(struct drm_device *dev, ...@@ -426,6 +426,8 @@ static void drm_connector_cleanup_action(struct drm_device *dev,
* *
* The connector structure should be allocated with drmm_kzalloc(). * The connector structure should be allocated with drmm_kzalloc().
* *
* The @drm_connector_funcs.destroy hook must be NULL.
*
* Returns: * Returns:
* Zero on success, error code on failure. * Zero on success, error code on failure.
*/ */
...@@ -474,6 +476,8 @@ EXPORT_SYMBOL(drmm_connector_init); ...@@ -474,6 +476,8 @@ EXPORT_SYMBOL(drmm_connector_init);
* *
* The connector structure should be allocated with drmm_kzalloc(). * The connector structure should be allocated with drmm_kzalloc().
* *
* The @drm_connector_funcs.destroy hook must be NULL.
*
* Returns: * Returns:
* Zero on success, error code on failure. * Zero on success, error code on failure.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment