mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 11:01:06 -04:00
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:
committed by
Greg Kroah-Hartman
parent
bc7d7fc0e3
commit
d2b7f4c429
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user