VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Jessica Yu <jeyu@kernel.org> 2020-03-11 18:01:20 +0100 committer: Masahiro Yamada <masahiroy@kernel.org> 2020-03-17 08:59:03 +0900 commit: 5190044c2965514a973184ca68ef5fad57a24670 parent: 82f2bc2fcc0160d6f82dd1ac64518ae0a4dd183f
Commit Summary:
modpost: move the namespace field in Module.symvers last
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/scripts/export_report.pl b/scripts/export_report.pl
index 548330e8c4e7..feb3d5542a62 100755
--- a/scripts/export_report.pl
+++ b/scripts/export_report.pl
@@ -94,7 +94,7 @@ if (defined $opt{'o'}) {
 #
 while ( <$module_symvers> ) {
 	chomp;
-	my (undef, $symbol, $namespace, $module, $gpl) = split('\t');
+	my (undef, $symbol, $module, $gpl, $namespace) = split('\t');
 	$SYMBOL { $symbol } =  [ $module , "0" , $symbol, $gpl];
 }
 close($module_symvers);