diff options
author | Anton Gerasimov <anton.gerasimov@openmailbox.org> | 2015-06-13 22:23:48 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-13 14:48:26 -0700 |
commit | 1e6acab05c91f160f977a2160916abaabc89f976 (patch) | |
tree | 6f0357a2a712620f816900d6e0f01ff5c9a2781d /drivers/staging/fbtft | |
parent | 3c588452c2df09e1f0aa48b0e04bf53c31d61565 (diff) | |
download | blackbird-obmc-linux-1e6acab05c91f160f977a2160916abaabc89f976.tar.gz blackbird-obmc-linux-1e6acab05c91f160f977a2160916abaabc89f976.zip |
staging: fbtft: put spaces around assignment operators
Put spaces around assignment operators for readability.
Signed-off-by: Anton Gerasimov <anton.gerasimov@openmailbox.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fbtft')
-rw-r--r-- | drivers/staging/fbtft/flexfb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/fbtft/flexfb.c b/drivers/staging/fbtft/flexfb.c index 5c813fc9d69b..3c7677473ef9 100644 --- a/drivers/staging/fbtft/flexfb.c +++ b/drivers/staging/fbtft/flexfb.c @@ -242,8 +242,8 @@ static int flexfb_verify_gpios_db(struct fbtft_par *par) return -EINVAL; } if (latched) - num_db=buswidth/2; - for (i=0;i < num_db;i++) { + num_db = buswidth/2; + for (i = 0; i < num_db; i++) { if (par->gpio.db[i] < 0) { dev_err(par->info->device, "Missing info about 'db%02d' gpio. Aborting.\n", |