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

staging: comedi: ni_pcidio: checkpatch.pl cleanup (missing blank line)

Fix the checkpatch.pl warning:

WARNING: Missing a blank line after declarations
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c4c2c67a
...@@ -711,6 +711,7 @@ static int ni_pcidio_cmd(struct comedi_device *dev, struct comedi_subdevice *s) ...@@ -711,6 +711,7 @@ static int ni_pcidio_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
{ {
int retval = setup_mite_dma(dev, s); int retval = setup_mite_dma(dev, s);
if (retval) if (retval)
return retval; return retval;
} }
...@@ -853,6 +854,7 @@ static int pci_6534_load_fpga(struct comedi_device *dev, ...@@ -853,6 +854,7 @@ static int pci_6534_load_fpga(struct comedi_device *dev,
} }
for (j = 0; j + 1 < data_len;) { for (j = 0; j + 1 < data_len;) {
unsigned int value = data[j++]; unsigned int value = data[j++];
value |= data[j++] << 8; value |= data[j++] << 8;
writew(value, writew(value,
devpriv->mite->daq_io_addr + Firmware_Data_Register); devpriv->mite->daq_io_addr + Firmware_Data_Register);
......
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