Commit 65dd36a3 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Bartosz Golaszewski

lib/cmdline: Export next_arg() for being used in modules

At least one module will benefit from using next_arg() helper.
Let's export it for that module and others if they consider it
helpful.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Reviewed-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
parent ca40daf3
...@@ -272,3 +272,4 @@ char *next_arg(char *args, char **param, char **val) ...@@ -272,3 +272,4 @@ char *next_arg(char *args, char **param, char **val)
/* Chew up trailing spaces. */ /* Chew up trailing spaces. */
return skip_spaces(args); return skip_spaces(args);
} }
EXPORT_SYMBOL(next_arg);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment