mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
staging: fbtft: Remove do {} while(0) in single statement macro
This patch fixes the checkpatch.pl warning:
WARNING: Single statement macros should not use a do {} while (0) loop
+#define write_reg(par, ...) \
+do { \
+ par->fbtftops.write_register(par, NUMARGS(__VA_ARGS__), __VA_ARGS__); \
+} while (0)
Signed-off-by: Helen Fornazier <helen.fornazier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1f5f636c77
commit
4ebe6f46cb
|
|
@ -259,9 +259,7 @@ struct fbtft_par {
|
|||
#define NUMARGS(...) (sizeof((int[]){__VA_ARGS__})/sizeof(int))
|
||||
|
||||
#define write_reg(par, ...) \
|
||||
do { \
|
||||
par->fbtftops.write_register(par, NUMARGS(__VA_ARGS__), __VA_ARGS__); \
|
||||
} while (0)
|
||||
par->fbtftops.write_register(par, NUMARGS(__VA_ARGS__), __VA_ARGS__)
|
||||
|
||||
/* fbtft-core.c */
|
||||
extern void fbtft_dbg_hex(const struct device *dev,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user