staging: fbtft: Adds space around "/"

Kernel coding style recommends a space char around "/".

Signed-off-by: Leonardo Brás <leobras.c@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Leonardo Brás 2018-08-09 20:29:34 -03:00 коммит произвёл Greg Kroah-Hartman
Родитель 13c7a0ecdf
Коммит 2b2424d9a7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -232,7 +232,7 @@ struct fbtft_par {
bool polarity;
};
#define NUMARGS(...) (sizeof((int[]){__VA_ARGS__})/sizeof(int))
#define NUMARGS(...) (sizeof((int[]){__VA_ARGS__}) / sizeof(int))
#define write_reg(par, ...) \
((par)->fbtftops.write_register(par, NUMARGS(__VA_ARGS__), __VA_ARGS__))