From: sepehrdad sh <sepehrdad....@gmail.com>

Fixed multiple coding style issue

Signed-off-by: Sepehrdad Sh <sepehrdad....@gmail.com>
---
 drivers/staging/fbtft/fbtft-sysfs.c |  6 ++++--
 drivers/staging/fbtft/flexfb.c      | 22 +++++++++++++++-------
 2 files changed, 19 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/fbtft/fbtft-sysfs.c 
b/drivers/staging/fbtft/fbtft-sysfs.c
index 712096659aa0..3989b49ce310 100644
--- a/drivers/staging/fbtft/fbtft-sysfs.c
+++ b/drivers/staging/fbtft/fbtft-sysfs.c
@@ -68,7 +68,8 @@ int fbtft_gamma_parse_str(struct fbtft_par *par, u32 *curves,
                        ret = get_next_ulong(&curve_p, &val, " ", 16);
                        if (ret)
                                goto out;
-                       curves[curve_counter * par->gamma.num_values + 
value_counter] = val;
+                       curves[curve_counter * par->gamma.num_values
+                               + value_counter] = val;
                        value_counter++;
                }
                if (value_counter != par->gamma.num_values) {
@@ -126,7 +127,8 @@ static ssize_t store_gamma_curve(struct device *device,
 
        mutex_lock(&par->gamma.lock);
        memcpy(par->gamma.curves, tmp_curves,
-              par->gamma.num_curves * par->gamma.num_values * 
sizeof(tmp_curves[0]));
+              par->gamma.num_curves * par->gamma.num_values
+              * sizeof(tmp_curves[0]));
        mutex_unlock(&par->gamma.lock);
 
        return count;
diff --git a/drivers/staging/fbtft/flexfb.c b/drivers/staging/fbtft/flexfb.c
index f676c9b853f1..5ca42a716e00 100644
--- a/drivers/staging/fbtft/flexfb.c
+++ b/drivers/staging/fbtft/flexfb.c
@@ -667,11 +667,14 @@ static int flexfb_probe_common(struct spi_device *sdev,
                case 8:
                        par->fbtftops.write_vmem = fbtft_write_vmem16_bus8;
                        if (!par->startbyte)
-                               par->fbtftops.verify_gpios = 
flexfb_verify_gpios_dc;
+                               par->fbtftops.verify_gpios = (
+                               flexfb_verify_gpios_dc);
                        break;
                case 9:
                        if (regwidth == 16) {
-                               dev_err(dev, "argument 'regwidth': %d is not 
supported with buswidth=%d and SPI.\n", regwidth, buswidth);
+                               dev_err(dev,
+                                       "argument 'regwidth': %d is not 
supported with buswidth=%d and SPI.\n",
+                                       regwidth, buswidth);
                                return -EINVAL;
                        }
                        par->fbtftops.write_register = fbtft_write_reg8_bus9;
@@ -684,8 +687,8 @@ static int flexfb_probe_common(struct spi_device *sdev,
                                        "9-bit SPI not available, emulating 
using 8-bit.\n");
                                /* allocate buffer with room for dc bits */
                                par->extra = devm_kzalloc(par->info->device,
-                                               par->txbuf.len + 
(par->txbuf.len / 8) + 8,
-                                               GFP_KERNEL);
+                               par->txbuf.len + (par->txbuf.len / 8) + 8,
+                               GFP_KERNEL);
                                if (!par->extra) {
                                        ret = -ENOMEM;
                                        goto out_release;
@@ -694,7 +697,9 @@ static int flexfb_probe_common(struct spi_device *sdev,
                        }
                        break;
                default:
-                       dev_err(dev, "argument 'buswidth': %d is not supported 
with SPI.\n", buswidth);
+                       dev_err(dev,
+                               "argument 'buswidth': %d is not supported with 
SPI.\n",
+                               buswidth);
                        return -EINVAL;
                }
        } else {
@@ -707,13 +712,16 @@ static int flexfb_probe_common(struct spi_device *sdev,
                case 16:
                        par->fbtftops.write_register = fbtft_write_reg16_bus16;
                        if (latched)
-                               par->fbtftops.write = 
fbtft_write_gpio16_wr_latched;
+                               par->fbtftops.write = (
+                               fbtft_write_gpio16_wr_latched);
                        else
                                par->fbtftops.write = fbtft_write_gpio16_wr;
                        par->fbtftops.write_vmem = fbtft_write_vmem16_bus16;
                        break;
                default:
-                       dev_err(dev, "argument 'buswidth': %d is not supported 
with parallel.\n", buswidth);
+                       dev_err(dev,
+                               "argument 'buswidth': %d is not supported with 
parallel.\n",
+                               buswidth);
                        return -EINVAL;
                }
        }
-- 
2.18.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to