Skip to content

Commit

Permalink
kbuild: fix export_report.pl
Browse files Browse the repository at this point in the history
This patch fixes an annoying bug of export_report.pl missing the usages
of some exports.

Signed-off-by: Adrian Bunk <[email protected]>
Signed-off-by: Sam Ravnborg <[email protected]>
  • Loading branch information
AdrianBunk authored and Sam Ravnborg committed Oct 12, 2007
1 parent 0bce673 commit cf9a6ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/export_report.pl
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ sub collectcfiles {
next;
}
if ($state eq 2) {
if ( $_ !~ /0x[0-9a-f]{7,8},/ ) {
if ( $_ !~ /0x[0-9a-f]+,/ ) {
next;
}
my $sym = (split /([,"])/,)[4];
Expand Down

0 comments on commit cf9a6ad

Please sign in to comment.