media: atomisp: Fix Block Comments
authorPhilipp Gerlesberger <Philipp.Gerlesberger@fau.de>
Mon, 14 Dec 2020 11:01:46 +0000 (12:01 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Mon, 22 Mar 2021 17:05:34 +0000 (18:05 +0100)
Block comments should use * on subsequent lines and
should use a trailing */ on a separate line.

Link: https://lore.kernel.org/linux-media/20201214110156.6152-3-Philipp.Gerlesberger@fau.de
Co-developed-by: Andrey Khlopkov <ij72uhux@stud.informatik.uni-erlangen.de>
Signed-off-by: Andrey Khlopkov <ij72uhux@stud.informatik.uni-erlangen.de>
Signed-off-by: Philipp Gerlesberger <Philipp.Gerlesberger@fau.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/atomisp/pci/runtime/rmgr/src/rmgr_vbuf.c

index 834b07e..2e5c9ad 100644 (file)
@@ -86,7 +86,7 @@ void ia_css_rmgr_refcount_retain_vbuf(struct ia_css_rmgr_vbuf_handle **handle)
                        }
                }
                /* if the loop dus not break and *handle == NULL
-                  this is an error handle and report it.
+                * this is an error handle and report it.
                 */
                if (!*handle) {
                        ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
@@ -241,7 +241,8 @@ void rmgr_pop_handle(struct ia_css_rmgr_vbuf_pool *pool,
                        *handle = pool->handles[i];
                        pool->handles[i] = NULL;
                        /* dont release, we are returning it...
-                          ia_css_rmgr_refcount_release_vbuf(handle); */
+                        * ia_css_rmgr_refcount_release_vbuf(handle);
+                        */
                        return;
                }
        }