staging: comedi: range.c: reformat ioctl handler comment
authorIan Abbott <abbotti@mev.co.uk>
Wed, 28 Jan 2015 18:41:48 +0000 (18:41 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 7 Feb 2015 09:04:22 +0000 (17:04 +0800)
The unlocked_ioctl handler in "comedi_fops.c" calls a different function
to handle each supported ioctl command code.  Most of these have a block
comment indicating which command code it handles, a brief description,
and an informal description of the inputs and outputs.  These block
comments were formatted in various styles, but have been reformatted to
use the usual block comment style.

The block comment for the handler function for the `COMEDI_RANGEINFO`
ioctl code is in "range.c".  Reformat it to use the usual block command
style to match the others.  Reword it a bit for consistency.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/range.c

index 9a1dc56f21d1564408cefb43f56512c1c8a6ca89..00e71c7e55684760e76c76ba89561c3ee630df9c 100644 (file)
@@ -42,18 +42,18 @@ const struct comedi_lrange range_unknown = { 1, {{0, 1000000, UNIT_none} } };
 EXPORT_SYMBOL_GPL(range_unknown);
 
 /*
-       COMEDI_RANGEINFO
-       range information ioctl
-
      arg:
              pointer to rangeinfo structure
-
      reads:
              range info structure
-
      writes:
              n struct comedi_krange structures to rangeinfo->range_ptr
-*/
+ * COMEDI_RANGEINFO ioctl
+ * range information
+ *
* arg:
*     pointer to comedi_rangeinfo structure
+ *
* reads:
*     comedi_rangeinfo structure
+ *
* writes:
*     array of comedi_krange structures to rangeinfo->range_ptr pointer
+ */
 int do_rangeinfo_ioctl(struct comedi_device *dev,
                       struct comedi_rangeinfo __user *arg)
 {
This page took 0.027951 seconds and 5 git commands to generate.