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 <sergiosacj@riseup.net>
Link: https://lore.kernel.org/r/20240730071904.1047-1-sergiosacj@riseup.net
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Sergio de Almeida Cipriano Junior 2024-07-30 09:19:04 +02:00 committed by Mauro Carvalho Chehab
parent 456b86d420
commit 5788a2d2e2

View File

@ -27,7 +27,8 @@
* #define assert(cnd) BUG_ON(cnd)
* but that causes many compiler warnings (==errors) under Android
* because it seems that the BUG_ON() macro is not seen as a check by
* gcc like the BUG() macro is. */
* gcc like the BUG() macro is.
*/
#define assert(cnd) \
do { \
if (!(cnd)) \
@ -37,7 +38,8 @@
#ifndef PIPE_GENERATION
/* Deprecated OP___assert, this is still used in ~1000 places
* in the code. This will be removed over time.
* The implementation for the pipe generation tool is in see support.isp.h */
* The implementation for the pipe generation tool is in see support.isp.h
*/
#define OP___assert(cnd) assert(cnd)
static inline void compile_time_assert(unsigned int cond)