Commit eb538ff0 authored by Deepak R Varma's avatar Deepak R Varma Committed by Greg Kroah-Hartman

staging: comedi: ni_labpc_common: Reformat multiple line dereference

Reformat multi-line dereferencing of function arguments
&cmd->scan_begin_arg. Also reformat another call to the same function to
follow the same argument formatting structure. Problem detected by
checkpatch script.
Signed-off-by: default avatarDeepak R Varma <mh12gx2825@gmail.com>
Link: https://lore.kernel.org/r/20200322185932.GA12594@deeUbuntuSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7385adec
...@@ -560,14 +560,13 @@ static int labpc_ai_cmdtest(struct comedi_device *dev, ...@@ -560,14 +560,13 @@ static int labpc_ai_cmdtest(struct comedi_device *dev,
/* make sure scan timing is not too fast */ /* make sure scan timing is not too fast */
if (cmd->scan_begin_src == TRIG_TIMER) { if (cmd->scan_begin_src == TRIG_TIMER) {
if (cmd->convert_src == TRIG_TIMER) { if (cmd->convert_src == TRIG_TIMER) {
err |= comedi_check_trigger_arg_min(&cmd-> err |= comedi_check_trigger_arg_min(
scan_begin_arg, &cmd->scan_begin_arg,
cmd->convert_arg * cmd->convert_arg * cmd->chanlist_len);
cmd->chanlist_len);
} }
err |= comedi_check_trigger_arg_min(&cmd->scan_begin_arg, err |= comedi_check_trigger_arg_min(
board->ai_speed * &cmd->scan_begin_arg,
cmd->chanlist_len); board->ai_speed * cmd->chanlist_len);
} }
switch (cmd->stop_src) { switch (cmd->stop_src) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment