Commit d6d692fa authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

modpost: change license incompatibility to error() from fatal()



Change fatal() to error() to continue running to report more possible
issues.

There is no difference in the fact that modpost will fail anyway.

Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 1d6cd392
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2145,11 +2145,11 @@ static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
{
	switch (exp) {
	case export_gpl:
		fatal("GPL-incompatible module %s.ko uses GPL-only symbol '%s'\n",
		error("GPL-incompatible module %s.ko uses GPL-only symbol '%s'\n",
		      m, s);
		break;
	case export_unused_gpl:
		fatal("GPL-incompatible module %s.ko uses GPL-only symbol marked UNUSED '%s'\n",
		error("GPL-incompatible module %s.ko uses GPL-only symbol marked UNUSED '%s'\n",
		      m, s);
		break;
	case export_gpl_future: