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

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
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -272,3 +272,4 @@ char *next_arg(char *args, char **param, char **val)
	/* Chew up trailing spaces. */
	return skip_spaces(args);
}
EXPORT_SYMBOL(next_arg);