From: Adrian Bunk Date: Fri, 24 Aug 2007 21:04:51 +0000 (+0200) Subject: kbuild: fix export_report.pl X-Git-Tag: v2.6.24-rc1~830^2~36 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=cf9a6adeae706849990e5bdd4f32cb45d667e0c5;p=linux-2.6-omap-h63xx.git 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 Signed-off-by: Sam Ravnborg --- diff --git a/scripts/export_report.pl b/scripts/export_report.pl index 9ed00d9bb0a..08ceb42c19b 100644 --- a/scripts/export_report.pl +++ b/scripts/export_report.pl @@ -112,7 +112,7 @@ foreach my $thismod (@allcfiles) { next; } if ($state eq 2) { - if ( $_ !~ /0x[0-9a-f]{7,8},/ ) { + if ( $_ !~ /0x[0-9a-f]+,/ ) { next; } my $sym = (split /([,"])/,)[4];