diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2015-02-22 19:50:23 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-02-23 05:19:36 -0500 |
commit | 7f50002fc602ba7870df554f91a76434c9404f5d (patch) | |
tree | 325509caec7037c6f472ae4e5fa2beeb24538cb4 | |
parent | 498b8738485ab1a327163f771953f32cf35ca3b5 (diff) |
drm/atomic-helpers: Fix documentation typos and wrong copy&paste
The kerneldoc blocks for the drm_atomic_helper_*_set_property()
functions seem to have been copied from the plane disable handler
without being properly updated. Fix them.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/drm_atomic_helper.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c index 7e3a52b97c7d..e70adfcb9e84 100644 --- a/drivers/gpu/drm/drm_atomic_helper.c +++ b/drivers/gpu/drm/drm_atomic_helper.c | |||
@@ -1678,12 +1678,13 @@ backoff: | |||
1678 | EXPORT_SYMBOL(drm_atomic_helper_set_config); | 1678 | EXPORT_SYMBOL(drm_atomic_helper_set_config); |
1679 | 1679 | ||
1680 | /** | 1680 | /** |
1681 | * drm_atomic_helper_crtc_set_property - helper for crtc prorties | 1681 | * drm_atomic_helper_crtc_set_property - helper for crtc properties |
1682 | * @crtc: DRM crtc | 1682 | * @crtc: DRM crtc |
1683 | * @property: DRM property | 1683 | * @property: DRM property |
1684 | * @val: value of property | 1684 | * @val: value of property |
1685 | * | 1685 | * |
1686 | * Provides a default plane disablle handler using the atomic driver interface. | 1686 | * Provides a default crtc set_property handler using the atomic driver |
1687 | * interface. | ||
1687 | * | 1688 | * |
1688 | * RETURNS: | 1689 | * RETURNS: |
1689 | * Zero on success, error code on failure | 1690 | * Zero on success, error code on failure |
@@ -1737,12 +1738,13 @@ backoff: | |||
1737 | EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property); | 1738 | EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property); |
1738 | 1739 | ||
1739 | /** | 1740 | /** |
1740 | * drm_atomic_helper_plane_set_property - helper for plane prorties | 1741 | * drm_atomic_helper_plane_set_property - helper for plane properties |
1741 | * @plane: DRM plane | 1742 | * @plane: DRM plane |
1742 | * @property: DRM property | 1743 | * @property: DRM property |
1743 | * @val: value of property | 1744 | * @val: value of property |
1744 | * | 1745 | * |
1745 | * Provides a default plane disable handler using the atomic driver interface. | 1746 | * Provides a default plane set_property handler using the atomic driver |
1747 | * interface. | ||
1746 | * | 1748 | * |
1747 | * RETURNS: | 1749 | * RETURNS: |
1748 | * Zero on success, error code on failure | 1750 | * Zero on success, error code on failure |
@@ -1796,12 +1798,13 @@ backoff: | |||
1796 | EXPORT_SYMBOL(drm_atomic_helper_plane_set_property); | 1798 | EXPORT_SYMBOL(drm_atomic_helper_plane_set_property); |
1797 | 1799 | ||
1798 | /** | 1800 | /** |
1799 | * drm_atomic_helper_connector_set_property - helper for connector prorties | 1801 | * drm_atomic_helper_connector_set_property - helper for connector properties |
1800 | * @connector: DRM connector | 1802 | * @connector: DRM connector |
1801 | * @property: DRM property | 1803 | * @property: DRM property |
1802 | * @val: value of property | 1804 | * @val: value of property |
1803 | * | 1805 | * |
1804 | * Provides a default plane disablle handler using the atomic driver interface. | 1806 | * Provides a default connector set_property handler using the atomic driver |
1807 | * interface. | ||
1805 | * | 1808 | * |
1806 | * RETURNS: | 1809 | * RETURNS: |
1807 | * Zero on success, error code on failure | 1810 | * Zero on success, error code on failure |