All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix checkpatch issue
@ 2018-02-16 20:41 Ishita Tripathi
  2018-02-16 20:51 ` Greg Kroah-Hartman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Ishita Tripathi @ 2018-02-16 20:41 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Ian Abbott, H Hartley Sweeten; +Cc: outreachy-kernel

Deleted line break after dereference operator (->)

Signed-off-by: Ishita Tripathi <sakurakhadag@gmail.com>

---
 drivers/staging/comedi/drivers/rtd520.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/comedi/drivers/rtd520.c b/drivers/staging/comedi/drivers/rtd520.c
index bb400e0..47b7093 100644
--- a/drivers/staging/comedi/drivers/rtd520.c
+++ b/drivers/staging/comedi/drivers/rtd520.c
@@ -815,9 +815,8 @@ static int rtd_ai_cmdtest(struct comedi_device *dev,
 
 		if (cmd->scan_begin_src == TRIG_TIMER) {
 			arg = cmd->convert_arg * cmd->scan_end_arg;
-			err |= comedi_check_trigger_arg_min(&cmd->
-							    scan_begin_arg,
-							    arg);
+			err |= comedi_check_trigger_arg_min(&cmd->scan_begin_arg,
+					arg);
 		}
 	}
 
-- 
2.7.4



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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-16 20:41 [PATCH] Fix checkpatch issue Ishita Tripathi
2018-02-16 20:51 ` Greg Kroah-Hartman
2018-02-16 20:54 ` [Outreachy kernel] " Julia Lawall
2018-02-16 21:26 ` Ishita Tripathi

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.