]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
lib/cmdline: Update documentation to reflect behaviour
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 22 Jan 2021 12:38:49 +0000 (14:38 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 15 Feb 2021 10:43:31 +0000 (11:43 +0100)
get_options() API has some tricks to optimize that may be not so obvious
to the caller. Update documentation to reflect current behaviour.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
lib/cmdline.c

index b390dd03363bd093a2a270881e1059cb79f96467..f33882f1cd529c18e75cc5a3bd3a851bff3900bd 100644 (file)
@@ -83,7 +83,7 @@ EXPORT_SYMBOL(get_option);
  *     get_options - Parse a string into a list of integers
  *     @str: String to be parsed
  *     @nints: size of integer array
- *     @ints: integer array
+ *     @ints: integer array (must have room for at least one element)
  *
  *     This function parses a string containing a comma-separated
  *     list of integers, a hyphen-separated range of _positive_ integers,
@@ -91,6 +91,11 @@ EXPORT_SYMBOL(get_option);
  *     full, or when no more numbers can be retrieved from the
  *     string.
  *
+ *     Returns:
+ *
+ *     The first element is filled by the number of collected integers
+ *     in the range. The rest is what was parsed from the @str.
+ *
  *     Return value is the character in the string which caused
  *     the parse to end (typically a null terminator, if @str is
  *     completely parseable).