mirror of https://gitee.com/openkylin/linux.git
staging: comedi: das16m1: tidy up comment in das16m1_cmd_exec()
Fix the checkpatch.pl issue: WARNING: Block comments use a trailing */ on a separate line Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
27eeef415d
commit
50ac3ae33b
|
@ -291,8 +291,10 @@ static int das16m1_cmd_exec(struct comedi_device *dev,
|
|||
|
||||
/* set control & status register */
|
||||
byte = 0;
|
||||
/* if we are using external start trigger (also board dislikes having
|
||||
* both start and conversion triggers external simultaneously) */
|
||||
/*
|
||||
* If we are using external start trigger (also board dislikes having
|
||||
* both start and conversion triggers external simultaneously).
|
||||
*/
|
||||
if (cmd->start_src == TRIG_EXT && cmd->convert_src != TRIG_EXT)
|
||||
byte |= EXT_TRIG_BIT;
|
||||
|
||||
|
|
Loading…
Reference in New Issue