Commit b30367c0 authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman

staging: fbtft: fbtft_device.c: remove extra parentheses around function arguments

Removes extra parentheses around function arguments. Issue
detected and resolved using the following coccinelle script:

@@
expression e;
identifier f;
@@

f(...,
-(
e
-)
,...)
Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 248d8285
...@@ -1126,14 +1126,14 @@ static int write_gpio16_wr_slow(struct fbtft_par *par, void *buf, size_t len) ...@@ -1126,14 +1126,14 @@ static int write_gpio16_wr_slow(struct fbtft_par *par, void *buf, size_t len)
for (i = 0; i < 16; i++) { for (i = 0; i < 16; i++) {
if ((data & 1) != (prev_data & 1)) if ((data & 1) != (prev_data & 1))
gpio_set_value(par->gpio.db[i], gpio_set_value(par->gpio.db[i],
(data & 1)); data & 1);
data >>= 1; data >>= 1;
prev_data >>= 1; prev_data >>= 1;
} }
} }
#else #else
for (i = 0; i < 16; i++) { for (i = 0; i < 16; i++) {
gpio_set_value(par->gpio.db[i], (data & 1)); gpio_set_value(par->gpio.db[i], data & 1);
data >>= 1; data >>= 1;
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment