* [PATCH v2] Staging: fbtft: Remove unnecessary parenthesis and split lines to increase readability
@ 2015-03-15 11:57 Vatika Harlalka
2015-03-16 15:26 ` [Outreachy kernel] " Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Vatika Harlalka @ 2015-03-15 11:57 UTC (permalink / raw)
To: outreachy-kernel
Remove unnecessary parenthesis in condition statement and
split lines to increase readability.
Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
---
Changes in v2: Changed subject line to make it more
descriptive.
drivers/staging/fbtft/fb_ra8875.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/fbtft/fb_ra8875.c b/drivers/staging/fbtft/fb_ra8875.c
index e21af6c..bc8ca1e 100644
--- a/drivers/staging/fbtft/fb_ra8875.c
+++ b/drivers/staging/fbtft/fb_ra8875.c
@@ -72,12 +72,13 @@ static int init_display(struct fbtft_par *par)
fbtft_par_dbg(DEBUG_INIT_DISPLAY, par,
"%s()\n", __func__);
- fbtft_par_dbg(DEBUG_INIT_DISPLAY, par,
- "display size %dx%d\n", par->info->var.xres, par->info->var.yres);
+ fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "display size %dx%d\n",
+ par->info->var.xres, par->info->var.yres);
par->fbtftops.reset(par);
- if ((par->info->var.xres == 320) && (par->info->var.yres == 240)) {
+ if (par->info->var.xres == 320 &&
+ par->info->var.yres == 240) {
/* PLL clock frequency */
write_reg(par, 0x88, 0x0A);
write_reg(par, 0x89, 0x02);
@@ -101,7 +102,8 @@ static int init_display(struct fbtft_par *par)
write_reg(par, 0x1D, 0x0E);
write_reg(par, 0x1E, 0x00);
write_reg(par, 0x1F, 0x02);
- } else if ((par->info->var.xres == 480) && (par->info->var.yres == 272)) {
+ } else if (par->info->var.xres == 480 &&
+ par->info->var.yres == 272) {
/* PLL clock frequency */
write_reg(par, 0x88, 0x0A);
write_reg(par, 0x89, 0x02);
@@ -125,7 +127,8 @@ static int init_display(struct fbtft_par *par)
write_reg(par, 0x1D, 0x07);
write_reg(par, 0x1E, 0x00);
write_reg(par, 0x1F, 0x09);
- } else if ((par->info->var.xres == 640) && (par->info->var.yres == 480)) {
+ } else if (par->info->var.xres == 640 &&
+ par->info->var.yres == 480) {
/* PLL clock frequency */
write_reg(par, 0x88, 0x0B);
write_reg(par, 0x89, 0x02);
@@ -149,7 +152,8 @@ static int init_display(struct fbtft_par *par)
write_reg(par, 0x1D, 0x0E);
write_reg(par, 0x1E, 0x00);
write_reg(par, 0x1F, 0x01);
- } else if ((par->info->var.xres == 800) && (par->info->var.yres == 480)) {
+ } else if (par->info->var.xres == 800 &&
+ par->info->var.yres == 480) {
/* PLL clock frequency */
write_reg(par, 0x88, 0x0B);
write_reg(par, 0x89, 0x02);
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [Outreachy kernel] [PATCH v2] Staging: fbtft: Remove unnecessary parenthesis and split lines to increase readability
2015-03-15 11:57 [PATCH v2] Staging: fbtft: Remove unnecessary parenthesis and split lines to increase readability Vatika Harlalka
@ 2015-03-16 15:26 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2015-03-16 15:26 UTC (permalink / raw)
To: Vatika Harlalka; +Cc: outreachy-kernel
On Sun, Mar 15, 2015 at 05:27:05PM +0530, Vatika Harlalka wrote:
> Remove unnecessary parenthesis in condition statement and
> split lines to increase readability.
>
> Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
> ---
> Changes in v2: Changed subject line to make it more
> descriptive.
> drivers/staging/fbtft/fb_ra8875.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/staging/fbtft/fb_ra8875.c b/drivers/staging/fbtft/fb_ra8875.c
> index e21af6c..bc8ca1e 100644
> --- a/drivers/staging/fbtft/fb_ra8875.c
> +++ b/drivers/staging/fbtft/fb_ra8875.c
> @@ -72,12 +72,13 @@ static int init_display(struct fbtft_par *par)
>
> fbtft_par_dbg(DEBUG_INIT_DISPLAY, par,
> "%s()\n", __func__);
> - fbtft_par_dbg(DEBUG_INIT_DISPLAY, par,
> - "display size %dx%d\n", par->info->var.xres, par->info->var.yres);
> + fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "display size %dx%d\n",
> + par->info->var.xres, par->info->var.yres);
>
> par->fbtftops.reset(par);
>
> - if ((par->info->var.xres == 320) && (par->info->var.yres == 240)) {
> + if (par->info->var.xres == 320 &&
> + par->info->var.yres == 240) {
While yes, these () are not needed, it's good to keep them there, just
to be "obvious" as to what is going on. So they are fine to leave
alone.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-16 15:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-15 11:57 [PATCH v2] Staging: fbtft: Remove unnecessary parenthesis and split lines to increase readability Vatika Harlalka
2015-03-16 15:26 ` [Outreachy kernel] " Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.