mirror of https://gitee.com/openkylin/linux.git
Staging: fbtft-core: remove unnecessary line continuations
This fixes the checkpatch.pl warning: WARNING: Avoid unnecessary line continuations Signed-off-by: Yeliz Taneroglu <yeliztaneroglu@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
dd03eed307
commit
6ba67a5a7b
|
@ -379,7 +379,7 @@ static void fbtft_update_display(struct fbtft_par *par, unsigned start_line,
|
|||
int ret = 0;
|
||||
|
||||
if (unlikely(par->debug & (DEBUG_TIME_FIRST_UPDATE | DEBUG_TIME_EACH_UPDATE))) {
|
||||
if ((par->debug & DEBUG_TIME_EACH_UPDATE) || \
|
||||
if ((par->debug & DEBUG_TIME_EACH_UPDATE) ||
|
||||
((par->debug & DEBUG_TIME_FIRST_UPDATE) && !par->first_update_done)) {
|
||||
getnstimeofday(&ts_start);
|
||||
timeit = true;
|
||||
|
@ -1276,7 +1276,7 @@ static int fbtft_verify_gpios(struct fbtft_par *par)
|
|||
fbtft_par_dbg(DEBUG_VERIFY_GPIOS, par, "%s()\n", __func__);
|
||||
|
||||
pdata = par->info->device->platform_data;
|
||||
if (pdata->display.buswidth != 9 && par->startbyte == 0 && \
|
||||
if (pdata->display.buswidth != 9 && par->startbyte == 0 &&
|
||||
par->gpio.dc < 0) {
|
||||
dev_err(par->info->device,
|
||||
"Missing info about 'dc' gpio. Aborting.\n");
|
||||
|
|
Loading…
Reference in New Issue