Re: [PATCH] add fbtft ssd1325 controller support

2016-01-26 Thread Alexey Mednyy
On 01/26/2016 05:09 PM, Dan Carpenter wrote: Same stuff. Run checkpatch.pl. + gpio_set_value(par->gpio.dc, 1); + /* Write data */ + + ret = + par->fbtftops.write(par, par->txbuf.buf, + par->info->var.xres * par->info->var.yres / 2

Re: [PATCH] add fbtft ssd1325 controller support

2016-01-26 Thread Dan Carpenter
Same stuff. Run checkpatch.pl. > + gpio_set_value(par->gpio.dc, 1); > + /* Write data */ > + > + ret = > + par->fbtftops.write(par, par->txbuf.buf, > + par->info->var.xres * par->info->var.yres / 2); Clean that line. > +static struct fbtft_dis

[PATCH] add fbtft ssd1325 controller support

2016-01-26 Thread Alexey Mednyy
Signed-off-by: Alexey Mednyy --- drivers/staging/fbtft/Kconfig | 6 + drivers/staging/fbtft/Makefile | 1 + drivers/staging/fbtft/fb_ssd1325.c | 266 + 3 files changed, 273 insertions(+) create mode 100644 drivers/staging/fbtft/fb_ssd1325.c diff