comedi:drivers:poc.c: unnecessary space before function pointer arguments
authorJohn de la Garza <john@jjdev.com>
Fri, 7 Mar 2014 00:30:36 +0000 (16:30 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Mar 2014 01:31:44 +0000 (17:31 -0800)
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>
drivers/staging/comedi/drivers/poc.c

index 2ae4ee1..22c7392 100644 (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;
 };