diff options
author | Chase Southwood <chase.southwood@yahoo.com> | 2014-01-09 22:59:41 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-11 15:41:56 -0500 |
commit | b281539839ef8eacc79f4e12e5ac13202de13d0b (patch) | |
tree | 40e5f8cd4e160164fd1486b3bf046891a3d2a397 | |
parent | 1f4c095a7c684f0146c2684d2dcc719d05d0c38e (diff) |
Staging: comedi: fix spacing coding style issue in 8255.c.
This patch for 8255.c fixes a spacing warning found by checkpatch.pl.
Signed-off-by: Chase Southwood <chase.southwood@yahoo.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/comedi/drivers/8255.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/comedi/drivers/8255.c b/drivers/staging/comedi/drivers/8255.c index b4009e863414..48817f087d97 100644 --- a/drivers/staging/comedi/drivers/8255.c +++ b/drivers/staging/comedi/drivers/8255.c | |||
@@ -94,7 +94,7 @@ I/O port base address can be found in the output of 'lspci -v'. | |||
94 | 94 | ||
95 | struct subdev_8255_private { | 95 | struct subdev_8255_private { |
96 | unsigned long iobase; | 96 | unsigned long iobase; |
97 | int (*io) (int, int, int, unsigned long); | 97 | int (*io)(int, int, int, unsigned long); |
98 | }; | 98 | }; |
99 | 99 | ||
100 | static int subdev_8255_io(int dir, int port, int data, unsigned long iobase) | 100 | static int subdev_8255_io(int dir, int port, int data, unsigned long iobase) |
@@ -262,7 +262,7 @@ static int subdev_8255_cancel(struct comedi_device *dev, | |||
262 | } | 262 | } |
263 | 263 | ||
264 | int subdev_8255_init(struct comedi_device *dev, struct comedi_subdevice *s, | 264 | int subdev_8255_init(struct comedi_device *dev, struct comedi_subdevice *s, |
265 | int (*io) (int, int, int, unsigned long), | 265 | int (*io)(int, int, int, unsigned long), |
266 | unsigned long iobase) | 266 | unsigned long iobase) |
267 | { | 267 | { |
268 | struct subdev_8255_private *spriv; | 268 | struct subdev_8255_private *spriv; |
@@ -289,7 +289,7 @@ int subdev_8255_init(struct comedi_device *dev, struct comedi_subdevice *s, | |||
289 | EXPORT_SYMBOL_GPL(subdev_8255_init); | 289 | EXPORT_SYMBOL_GPL(subdev_8255_init); |
290 | 290 | ||
291 | int subdev_8255_init_irq(struct comedi_device *dev, struct comedi_subdevice *s, | 291 | int subdev_8255_init_irq(struct comedi_device *dev, struct comedi_subdevice *s, |
292 | int (*io) (int, int, int, unsigned long), | 292 | int (*io)(int, int, int, unsigned long), |
293 | unsigned long iobase) | 293 | unsigned long iobase) |
294 | { | 294 | { |
295 | int ret; | 295 | int ret; |