Skip to content
Permalink
Browse files
Fix space prohibited issue in fbtft-bus.c
This change fixes a checkpatch error for "space prohibited before that close parenthesis ')'"

Signed-off-by: Alaa Emad <alaaemadhossney.ae@gmail.com>
  • Loading branch information
EngAlaaEmad authored and intel-lab-lkp committed Feb 12, 2021
1 parent a2ea4e1 commit c8ebfad6d337cc402230562da12297149f4c2879
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file.
@@ -62,9 +62,9 @@ out: \
} \
EXPORT_SYMBOL(func);

define_fbtft_write_reg(fbtft_write_reg8_bus8, u8, u8, )
define_fbtft_write_reg(fbtft_write_reg8_bus8, u8, u8)
define_fbtft_write_reg(fbtft_write_reg16_bus8, __be16, u16, cpu_to_be16)
define_fbtft_write_reg(fbtft_write_reg16_bus16, u16, u16, )
define_fbtft_write_reg(fbtft_write_reg16_bus16, u16, u16)

void fbtft_write_reg8_bus9(struct fbtft_par *par, int len, ...)
{

0 comments on commit c8ebfad

Please sign in to comment.