[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <fd59698e82257893f9056feed189a8fbe483e2f7.1451418912.git.ksenija.stanojevic@gmail.com>
Date: Tue, 29 Dec 2015 21:11:03 +0100
From: Ksenija Stanojevic <ksenija.stanojevic@...il.com>
To: gregkh@...uxfoundation.org
Cc: willy@...a-x.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org,
Ksenija Stanojevic <ksenija.stanojevic@...il.com>
Subject: [PATCH 5/5] Staging: panel: Make statement more readable
Broke statement into 3 different lines to make it more readable.
Signeded-off-by: Ksenija Stanojevic <ksenija.stanojevic@...il.com>
---
drivers/staging/panel/panel.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/panel.c
index 70cb9f3..207d8d5 100644
--- a/drivers/staging/panel/panel.c
+++ b/drivers/staging/panel/panel.c
@@ -2054,8 +2054,8 @@ static u8 input_name2mask(const char *name, __u64 *mask, __u64 *value,
while (*name) {
int in, out, bit, neg;
- for (in = 0; (in < sizeof(sigtab)) && (sigtab[in] != *name);
- in++)
+ for (in = 0;
+ (in < sizeof(sigtab)) && (sigtab[in] != *name); in++)
;
if (in >= sizeof(sigtab))
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists