staging: comedi: das16: fix a > 80 char line issue

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:
H Hartley Sweeten 2013-07-29 14:05:59 -07:00 committed by Greg Kroah-Hartman
parent f2e92ee1af
commit 0541144e80
1 changed files with 2 additions and 1 deletions

View File

@ -784,7 +784,8 @@ static int das16_cmd_exec(struct comedi_device *dev, struct comedi_subdevice *s)
byte = 0; byte = 0;
if (devpriv->can_burst) { if (devpriv->can_burst) {
if (cmd->convert_src == TRIG_NOW) { if (cmd->convert_src == TRIG_NOW) {
outb(DAS1600_BURST_VAL, dev->iobase + DAS1600_BURST_REG); outb(DAS1600_BURST_VAL,
dev->iobase + DAS1600_BURST_REG);
/* set burst length */ /* set burst length */
byte |= DAS16_PACER_BURST_LEN(cmd->chanlist_len - 1); byte |= DAS16_PACER_BURST_LEN(cmd->chanlist_len - 1);
} else { } else {