Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1210594 > unrolled thread

[PATCH] staging: fbtft: Removed a space before comma

Started byAparna Karuthodi <kdasaparna@gmail.com>
First post2015-08-20 17:30 +0200
Last post2015-08-24 15:10 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: fbtft: Removed a space before comma Aparna Karuthodi <kdasaparna@gmail.com> - 2015-08-20 17:30 +0200
    Re: [PATCH] staging: fbtft: Removed a space before comma Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2015-08-24 15:10 +0200

#1210594 — [PATCH] staging: fbtft: Removed a space before comma

FromAparna Karuthodi <kdasaparna@gmail.com>
Date2015-08-20 17:30 +0200
Subject[PATCH] staging: fbtft: Removed a space before comma
Message-ID<pZzWW-r1-23@gated-at.bofh.it>
Removed a space before coma to remove a coding style error detected by
checkpatch.
The error is given below:
drivers/staging/fbtft/fb_ili9340.c:47: ERROR: space prohibited before
that ',' (ctx:WxW)

Signed-off-by: Aparna Karuthodi <kdasaparna@gmail.com>
---
 drivers/staging/fbtft/fb_ili9340.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/fbtft/fb_ili9340.c b/drivers/staging/fbtft/fb_ili9340.c
index 985687d..5753f03 100644
--- a/drivers/staging/fbtft/fb_ili9340.c
+++ b/drivers/staging/fbtft/fb_ili9340.c
@@ -44,7 +44,7 @@ static int init_display(struct fbtft_par *par)
 	write_reg(par, 0xE8, 0x85 , 0x00 , 0x78);
 	write_reg(par, 0xCB, 0x39 , 0x2C , 0x00 , 0x34 , 0x02);
 	write_reg(par, 0xF7, 0x20);
-	write_reg(par, 0xEA, 0x00 , 0x00);
+	write_reg(par, 0xEA, 0x00, 0x00);
 
 	/* Power Control 1 */
 	write_reg(par, 0xC0, 0x23);
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1212157

FromSudip Mukherjee <sudipm.mukherjee@gmail.com>
Date2015-08-24 15:10 +0200
Message-ID<q0ZFD-9c-7@gated-at.bofh.it>
In reply to#1210594
On Thu, Aug 20, 2015 at 08:57:57PM +0530, Aparna Karuthodi wrote:
> Removed a space before coma to remove a coding style error detected by
> checkpatch.
> The error is given below:
> drivers/staging/fbtft/fb_ili9340.c:47: ERROR: space prohibited before
> that ',' (ctx:WxW)
> 
> Signed-off-by: Aparna Karuthodi <kdasaparna@gmail.com>
> ---
I think you need to update your tree. This has already been done by:
43da0d92ab7d ("staging: fbtft: fix space prohibited before that ','")

regards
sudip
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web