Commit d2b7f4c4 authored by John de la Garza's avatar John de la Garza Committed by Greg Kroah-Hartman

comedi:drivers:poc.c: unnecessary space before function pointer arguments

Removed unnecessary space before function pointer arguments.
Signed-off-by: default avatarJohn de la Garza <john@jjdev.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bc7d7fc0
......@@ -36,15 +36,15 @@ Configuration options:
struct boarddef_struct {
const char *name;
unsigned int iosize;
int (*setup) (struct comedi_device *);
int (*setup)(struct comedi_device *);
int type;
int n_chan;
int n_bits;
int (*winsn) (struct comedi_device *, struct comedi_subdevice *,
int (*winsn)(struct comedi_device *, struct comedi_subdevice *,
struct comedi_insn *, unsigned int *);
int (*rinsn) (struct comedi_device *, struct comedi_subdevice *,
int (*rinsn)(struct comedi_device *, struct comedi_subdevice *,
struct comedi_insn *, unsigned int *);
int (*insnbits) (struct comedi_device *, struct comedi_subdevice *,
int (*insnbits)(struct comedi_device *, struct comedi_subdevice *,
struct comedi_insn *, unsigned int *);
const struct comedi_lrange *range;
};
......
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