summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn de la Garza <john@jjdev.com>2014-03-06 16:30:36 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-03-06 17:31:44 -0800
commitd2b7f4c4293ac16d33f4da5c8e9beb6427239285 (patch)
treeb3b09cf5b3ccc2298e1e63486562d6968001693c
parentbc7d7fc0e377c5028bb3d2945a5d4a3162c461dc (diff)
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>
-rw-r--r--drivers/staging/comedi/drivers/poc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/comedi/drivers/poc.c b/drivers/staging/comedi/drivers/poc.c
index 2ae4ee15704c..22c739262e5e 100644
--- a/drivers/staging/comedi/drivers/poc.c
+++ b/drivers/staging/comedi/drivers/poc.c
@@ -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;
};