diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-08-24 17:04:51 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@neptun.(none)> | 2007-10-12 15:13:50 -0400 |
commit | cf9a6adeae706849990e5bdd4f32cb45d667e0c5 (patch) | |
tree | 022037ae60701268772d17ed00f02235850fcbd9 /scripts | |
parent | 0bce67352b580e9025059ecc71e13e0ffd281254 (diff) |
kbuild: fix export_report.pl
This patch fixes an annoying bug of export_report.pl missing the usages
of some exports.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/export_report.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/export_report.pl b/scripts/export_report.pl index 9ed00d9bb0a7..08ceb42c19bb 100644 --- a/scripts/export_report.pl +++ b/scripts/export_report.pl | |||
@@ -112,7 +112,7 @@ foreach my $thismod (@allcfiles) { | |||
112 | next; | 112 | next; |
113 | } | 113 | } |
114 | if ($state eq 2) { | 114 | if ($state eq 2) { |
115 | if ( $_ !~ /0x[0-9a-f]{7,8},/ ) { | 115 | if ( $_ !~ /0x[0-9a-f]+,/ ) { |
116 | next; | 116 | next; |
117 | } | 117 | } |
118 | my $sym = (split /([,"])/,)[4]; | 118 | my $sym = (split /([,"])/,)[4]; |