diff options
author | Maarten Lankhorst <maarten.lankhorst@linux.intel.com> | 2019-02-28 15:25:43 +0300 |
---|---|---|
committer | Maarten Lankhorst <maarten.lankhorst@linux.intel.com> | 2019-02-28 16:39:09 +0300 |
commit | b49996cb304ae85b63526791b76f5aec3dae8e9c (patch) | |
tree | 13ddafc70b460d1b6dfe3ff0f1d599f66a424cfc /include/drm/drm_crtc.h | |
parent | 13b99014c64acaee8edd0274e02864fc720c117b (diff) | |
download | linux-b49996cb304ae85b63526791b76f5aec3dae8e9c.tar.xz |
drm/doc: Fix copy paste error in drm_crtc_funcs.destroy()
The function is about cleaning up CRTC resources, not plane resources,
fix this in docbook.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 85abd3fe9e83..f7c3022dbdf4 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -472,7 +472,7 @@ struct drm_crtc_funcs { /** * @destroy: * - * Clean up plane resources. This is only called at driver unload time + * Clean up CRTC resources. This is only called at driver unload time * through drm_mode_config_cleanup() since a CRTC cannot be hotplugged * in DRM. */ |