Commit 3df1d9bd authored by Ebru Akagunduz's avatar Ebru Akagunduz Committed by Greg Kroah-Hartman

Staging: comedi: Fix line over 80 characters in s626.c

Fix checkpatch.pl issues line over 80 characters
in s626.c
Signed-off-by: default avatarEbru Akagunduz <ebru.akagunduz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fbdc4001
......@@ -225,7 +225,8 @@ static void s626_debi_transfer(struct comedi_device *dev)
udelay(1);
}
if (i == timeout)
comedi_error(dev, "Timeout while uploading to DEBI control register.");
comedi_error(dev,
"Timeout while uploading to DEBI control register.");
/* Wait until DEBI transfer is done */
for (i = 0; i < timeout; i++) {
......@@ -532,7 +533,8 @@ static int s626_send_dac(struct comedi_device *dev, uint32_t val)
ret = comedi_timeout(dev, NULL, NULL, s626_send_dac_eoc,
s626_send_dac_wait_fb_buffer2_msb_00);
if (ret) {
comedi_error(dev, "TSL timeout waiting for slot 0 to execute.");
comedi_error(dev,
"TSL timeout waiting for slot 0 to execute.");
return ret;
}
}
......
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