media: atomisp: Resolve goto style issue in sh_css.c
authorMartiros Shakhzadyan <vrzh@vrzh.net>
Sat, 8 May 2021 23:56:19 +0000 (01:56 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Fri, 23 Jul 2021 07:04:02 +0000 (09:04 +0200)
Change the goto label to lower case.
Remove a space in the goto label.

Link: https://lore.kernel.org/linux-media/20210508235622.300394-2-vrzh@vrzh.net
Signed-off-by: Martiros Shakhzadyan <vrzh@vrzh.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/atomisp/pci/sh_css.c

index d26b130..53c1001 100644 (file)
@@ -5170,7 +5170,7 @@ sh_css_pipe_get_grid_info(struct ia_css_pipe *pipe,
        if (binary) {
                err = ia_css_binary_3a_grid_info(binary, info, pipe);
                if (err)
-                       goto ERR;
+                       goto err;
        } else {
                memset(&info->s3a_grid, 0, sizeof(info->s3a_grid));
        }
@@ -5195,7 +5195,7 @@ sh_css_pipe_get_grid_info(struct ia_css_pipe *pipe,
 
        info->vamem_type = IA_CSS_VAMEM_TYPE_2;
 
-ERR :
+err:
        IA_CSS_LEAVE_ERR_PRIVATE(err);
        return err;
 }