diff options
author | Bhaskar Chowdhury <unixbhaskar@gmail.com> | 2021-03-18 16:07:39 +0530 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2021-03-18 14:22:50 +0100 |
commit | 4cf1d8719aab0ad89690abb1d37ecf4552778420 (patch) | |
tree | 8b9ea08a407d70adc3bb5ae43a0cffcff4066707 | |
parent | 6cf9dc238cacee9b0e519d4530181a45639d4503 (diff) | |
download | lwn-4cf1d8719aab0ad89690abb1d37ecf4552778420.tar.gz lwn-4cf1d8719aab0ad89690abb1d37ecf4552778420.zip |
drm: Few typo fixes
s/instatiated/instantiated/
s/unreference/unreferenced/
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210318103739.27849-1-unixbhaskar@gmail.com
-rw-r--r-- | drivers/gpu/drm/drm_property.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_property.c b/drivers/gpu/drm/drm_property.c index 6ee04803c362..27c824a6eb60 100644 --- a/drivers/gpu/drm/drm_property.c +++ b/drivers/gpu/drm/drm_property.c @@ -43,7 +43,7 @@ * property types and ranges. * * Properties don't store the current value directly, but need to be - * instatiated by attaching them to a &drm_mode_object with + * instantiated by attaching them to a &drm_mode_object with * drm_object_attach_property(). * * Property values are only 64bit. To support bigger piles of data (like gamma @@ -644,7 +644,7 @@ EXPORT_SYMBOL(drm_property_blob_get); * @id: id of the blob property * * If successful, this takes an additional reference to the blob property. - * callers need to make sure to eventually unreference the returned property + * callers need to make sure to eventually unreferenced the returned property * again, using drm_property_blob_put(). * * Return: |