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

Removed unnecessary space before function pointer arguments.

Signed-off-by: John de la Garza <john@jjdev.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
John de la Garza
2014-03-06 16:30:36 -08:00
committed by Greg Kroah-Hartman
parent bc7d7fc0e3
commit d2b7f4c429

View File

@@ -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;
};