Skip to content

Commit 5788a2d

Browse files
sergiosacjmchehab
authored andcommitted
media: atomisp: move trailing */ to separate lines
Fix checkpatch diagnostic "WARNING: Block comments use a trailing */ on a separate line" in assert_support.h file. Signed-off-by: Sergio de Almeida Cipriano Junior <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 456b86d commit 5788a2d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/staging/media/atomisp/pci/hive_isp_css_include/assert_support.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
* #define assert(cnd) BUG_ON(cnd)
2828
* but that causes many compiler warnings (==errors) under Android
2929
* because it seems that the BUG_ON() macro is not seen as a check by
30-
* gcc like the BUG() macro is. */
30+
* gcc like the BUG() macro is.
31+
*/
3132
#define assert(cnd) \
3233
do { \
3334
if (!(cnd)) \
@@ -37,7 +38,8 @@
3738
#ifndef PIPE_GENERATION
3839
/* Deprecated OP___assert, this is still used in ~1000 places
3940
* in the code. This will be removed over time.
40-
* The implementation for the pipe generation tool is in see support.isp.h */
41+
* The implementation for the pipe generation tool is in see support.isp.h
42+
*/
4143
#define OP___assert(cnd) assert(cnd)
4244

4345
static inline void compile_time_assert(unsigned int cond)

0 commit comments

Comments
 (0)