All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: ks7010: Fix line ending with a '('
@ 2019-10-27  6:02 Frank A. Cancio Bello
  2019-10-27  7:12 ` Greg KH
  2019-10-27  7:28 ` [Outreachy kernel] " Julia Lawall
  0 siblings, 2 replies; 4+ messages in thread
From: Frank A. Cancio Bello @ 2019-10-27  6:02 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, saiprakash.ranjan, joel

checkpatch.pl message:
"CHECK:OPEN_ENDED_LINE: Lines should not end with a '('"

Signed-off-by: Frank A. Cancio Bello <frank@generalsoftwareinc.com>
---
 drivers/staging/ks7010/ks_hostif.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/ks7010/ks_hostif.c b/drivers/staging/ks7010/ks_hostif.c
index 2666f9e30c15..ab731a2f7bb3 100644
--- a/drivers/staging/ks7010/ks_hostif.c
+++ b/drivers/staging/ks7010/ks_hostif.c
@@ -75,9 +75,8 @@ static void ks_wlan_hw_wakeup_task(struct work_struct *work)
 
 	if (ps_status == PS_SNOOZE) {
 		ks_wlan_hw_wakeup_request(priv);
-		time_left = wait_for_completion_interruptible_timeout(
-				&priv->psstatus.wakeup_wait,
-				msecs_to_jiffies(20));
+		time_left = wait_for_completion_interruptible_timeout(&priv->psstatus.wakeup_wait,
+								      msecs_to_jiffies(20));
 		if (time_left <= 0) {
 			netdev_dbg(priv->net_dev, "wake up timeout or interrupted !!!\n");
 			schedule_work(&priv->wakeup_work);
-- 
2.17.1



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

end of thread, other threads:[~2019-10-28  1:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-27  6:02 [PATCH] staging: ks7010: Fix line ending with a '(' Frank A. Cancio Bello
2019-10-27  7:12 ` Greg KH
2019-10-27  7:28 ` [Outreachy kernel] " Julia Lawall
2019-10-28  1:44   ` Frank A. Cancio Bello

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.