diff options
author | Thierry Reding <treding@nvidia.com> | 2014-06-26 15:37:20 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-07-18 09:39:27 -0400 |
commit | 2aa9d2bc8cc3ab32ea0d15ec9005f25b1af3465a (patch) | |
tree | 5f7c474aea87344f5a748d27c36e41b395bebfa1 /drivers/gpu/drm/drm_crtc.c | |
parent | b957f457fbce30cc4901dc28f2b56f2b15dfe84a (diff) |
drm: Fix function names in kerneldoc
The drm_property_create_enum(), drm_property_create_bitmask() and
drm_property_create_range() contain the wrong name in the kerneldoc
comment. This is probably simply a copy/paste mistake.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc.c')
-rw-r--r-- | drivers/gpu/drm/drm_crtc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index c808a092d824..1ccf5cb9aa86 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c | |||
@@ -3388,7 +3388,7 @@ fail: | |||
3388 | EXPORT_SYMBOL(drm_property_create); | 3388 | EXPORT_SYMBOL(drm_property_create); |
3389 | 3389 | ||
3390 | /** | 3390 | /** |
3391 | * drm_property_create - create a new enumeration property type | 3391 | * drm_property_create_enum - create a new enumeration property type |
3392 | * @dev: drm device | 3392 | * @dev: drm device |
3393 | * @flags: flags specifying the property type | 3393 | * @flags: flags specifying the property type |
3394 | * @name: name of the property | 3394 | * @name: name of the property |
@@ -3434,7 +3434,7 @@ struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags, | |||
3434 | EXPORT_SYMBOL(drm_property_create_enum); | 3434 | EXPORT_SYMBOL(drm_property_create_enum); |
3435 | 3435 | ||
3436 | /** | 3436 | /** |
3437 | * drm_property_create - create a new bitmask property type | 3437 | * drm_property_create_bitmask - create a new bitmask property type |
3438 | * @dev: drm device | 3438 | * @dev: drm device |
3439 | * @flags: flags specifying the property type | 3439 | * @flags: flags specifying the property type |
3440 | * @name: name of the property | 3440 | * @name: name of the property |
@@ -3496,7 +3496,7 @@ static struct drm_property *property_create_range(struct drm_device *dev, | |||
3496 | } | 3496 | } |
3497 | 3497 | ||
3498 | /** | 3498 | /** |
3499 | * drm_property_create - create a new ranged property type | 3499 | * drm_property_create_range - create a new ranged property type |
3500 | * @dev: drm device | 3500 | * @dev: drm device |
3501 | * @flags: flags specifying the property type | 3501 | * @flags: flags specifying the property type |
3502 | * @name: name of the property | 3502 | * @name: name of the property |