media: vivid: fix typo: use -> user
authorHans Verkuil <hverkuil@xs4all.nl>
Thu, 25 Jul 2019 07:52:19 +0000 (03:52 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Thu, 25 Jul 2019 10:33:32 +0000 (06:33 -0400)
Fix typo in two comments.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/vivid/vivid-core.c

index bc2a176937a447d3ebd3b3e67bbaec038c7a993f..8e1ebc94943ea21fa2ee368db4871516734936a9 100644 (file)
@@ -792,7 +792,7 @@ static int vivid_create_instance(struct platform_device *pdev, int inst)
        if (no_error_inj && ccs_cap == -1)
                ccs_cap = 7;
 
-       /* if ccs_cap == -1, then the use can select it using controls */
+       /* if ccs_cap == -1, then the user can select it using controls */
        if (ccs_cap != -1) {
                dev->has_crop_cap = ccs_cap & 1;
                dev->has_compose_cap = ccs_cap & 2;
@@ -807,7 +807,7 @@ static int vivid_create_instance(struct platform_device *pdev, int inst)
        if (no_error_inj && ccs_out == -1)
                ccs_out = 7;
 
-       /* if ccs_out == -1, then the use can select it using controls */
+       /* if ccs_out == -1, then the user can select it using controls */
        if (ccs_out != -1) {
                dev->has_crop_out = ccs_out & 1;
                dev->has_compose_out = ccs_out & 2;