staging: comedi: reformat lines to 80 chars or less

This is a cleanup patch to fix line length issue found
by checkpatch.pl script.

In this patch, lines 186, 192 and 199 have been wrapped.

Signed-off-by: Eujon Sellers <eujon.sellers@gmail.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Eujon Sellers 2018-01-25 16:21:58 -07:00 committed by Greg Kroah-Hartman
parent 9b046013e5
commit 26311087d1

View File

@ -183,17 +183,21 @@ struct comedi_subdevice {
struct comedi_insn *insn, unsigned int *data); struct comedi_insn *insn, unsigned int *data);
int (*insn_bits)(struct comedi_device *dev, struct comedi_subdevice *s, int (*insn_bits)(struct comedi_device *dev, struct comedi_subdevice *s,
struct comedi_insn *insn, unsigned int *data); struct comedi_insn *insn, unsigned int *data);
int (*insn_config)(struct comedi_device *dev, struct comedi_subdevice *s, int (*insn_config)(struct comedi_device *dev,
struct comedi_insn *insn, unsigned int *data); struct comedi_subdevice *s,
struct comedi_insn *insn,
unsigned int *data);
int (*do_cmd)(struct comedi_device *dev, struct comedi_subdevice *s); int (*do_cmd)(struct comedi_device *dev, struct comedi_subdevice *s);
int (*do_cmdtest)(struct comedi_device *dev, struct comedi_subdevice *s, int (*do_cmdtest)(struct comedi_device *dev,
struct comedi_subdevice *s,
struct comedi_cmd *cmd); struct comedi_cmd *cmd);
int (*poll)(struct comedi_device *dev, struct comedi_subdevice *s); int (*poll)(struct comedi_device *dev, struct comedi_subdevice *s);
int (*cancel)(struct comedi_device *dev, struct comedi_subdevice *s); int (*cancel)(struct comedi_device *dev, struct comedi_subdevice *s);
/* called when the buffer changes */ /* called when the buffer changes */
int (*buf_change)(struct comedi_device *dev, struct comedi_subdevice *s); int (*buf_change)(struct comedi_device *dev,
struct comedi_subdevice *s);
void (*munge)(struct comedi_device *dev, struct comedi_subdevice *s, void (*munge)(struct comedi_device *dev, struct comedi_subdevice *s,
void *data, unsigned int num_bytes, void *data, unsigned int num_bytes,