Commit b24a3ecd authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_mio_common: fix CamelCase in ni_serial_hw_readwrite8()

Fix the checkpatch.pl issue:
CHECK: Avoid CamelCase: <Error>
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 68556ffc
...@@ -3747,7 +3747,7 @@ static int ni_serial_hw_readwrite8(struct comedi_device *dev, ...@@ -3747,7 +3747,7 @@ static int ni_serial_hw_readwrite8(struct comedi_device *dev,
status1 = ni_stc_readw(dev, NISTC_STATUS1_REG); status1 = ni_stc_readw(dev, NISTC_STATUS1_REG);
if (status1 & NISTC_STATUS1_SERIO_IN_PROG) { if (status1 & NISTC_STATUS1_SERIO_IN_PROG) {
err = -EBUSY; err = -EBUSY;
goto Error; goto error;
} }
devpriv->dio_control |= NISTC_DIO_CTRL_HW_SER_START; devpriv->dio_control |= NISTC_DIO_CTRL_HW_SER_START;
...@@ -3763,7 +3763,7 @@ static int ni_serial_hw_readwrite8(struct comedi_device *dev, ...@@ -3763,7 +3763,7 @@ static int ni_serial_hw_readwrite8(struct comedi_device *dev,
dev_err(dev->class_dev, dev_err(dev->class_dev,
"SPI serial I/O didn't finish in time!\n"); "SPI serial I/O didn't finish in time!\n");
err = -ETIME; err = -ETIME;
goto Error; goto error;
} }
} }
...@@ -3776,7 +3776,7 @@ static int ni_serial_hw_readwrite8(struct comedi_device *dev, ...@@ -3776,7 +3776,7 @@ static int ni_serial_hw_readwrite8(struct comedi_device *dev,
if (data_in) if (data_in)
*data_in = ni_stc_readw(dev, NISTC_DIO_SERIAL_IN_REG); *data_in = ni_stc_readw(dev, NISTC_DIO_SERIAL_IN_REG);
Error: error:
ni_stc_writew(dev, devpriv->dio_control, NISTC_DIO_CTRL_REG); ni_stc_writew(dev, devpriv->dio_control, NISTC_DIO_CTRL_REG);
return err; return err;
......
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