mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Staging: nvec: fix line should not end with a open parenthesis.
@ 2018-02-16 11:36 Yash Omer
  2018-02-16 11:39 ` David Laight
  2018-02-16 12:55 ` Dan Carpenter
  0 siblings, 2 replies; 7+ messages in thread
From: Yash Omer @ 2018-02-16 11:36 UTC (permalink / raw)
  To: gregkh; +Cc: devel, driverdev-devel, linux-kernel, dan.carpenter, Larry.Finger

This patch fix line should not end with open parenthesis found by checkpatch.plscript.

Signed-off-by: Yash Omer <yashomer0007@gmail.com>
---
 drivers/staging/nvec/nvec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index 52054a528723..39fb737543b5 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -383,8 +383,8 @@ static void nvec_request_master(struct work_struct *work)
 		msg = list_first_entry(&nvec->tx_data, struct nvec_msg, node);
 		spin_unlock_irqrestore(&nvec->tx_lock, flags);
 		nvec_gpio_set_value(nvec, 0);
-		err = wait_for_completion_interruptible_timeout(
-				&nvec->ec_transfer, msecs_to_jiffies(5000));
+		err = wait_for_completion_interruptible_timeout
+			(&nvec->ec_transfer, msecs_to_jiffies(5000));
 
 		if (err == 0) {
 			dev_warn(nvec->dev, "timeout waiting for ec transfer\n");
-- 
2.14.3

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-02-16 21:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-16 11:36 [PATCH] Staging: nvec: fix line should not end with a open parenthesis Yash Omer
2018-02-16 11:39 ` David Laight
2018-02-16 12:55 ` Dan Carpenter
2018-02-16 17:13   ` [RFC patch] checkpatch: test identifier lengths Joe Perches
2018-02-16 20:31     ` Andrew Morton
2018-02-16 20:44       ` Greg KH
2018-02-16 21:05       ` Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome