summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorVasilis Tsiligiannis <acinonyx@openwrt.gr>2013-08-31 11:15:03 +0000
committerVasilis Tsiligiannis <acinonyx@openwrt.gr>2013-08-31 11:15:03 +0000
commit23ea2cb10e4b072cfbb0b3b8c9a105bea001a87f (patch)
tree9179f1252576cbea455e49edd2248f007d288cbc /scripts
parentc724c76f65c6e22845081512ca72ff85e8739824 (diff)
downloadmtk-20170518-23ea2cb10e4b072cfbb0b3b8c9a105bea001a87f.zip
mtk-20170518-23ea2cb10e4b072cfbb0b3b8c9a105bea001a87f.tar.gz
mtk-20170518-23ea2cb10e4b072cfbb0b3b8c9a105bea001a87f.tar.bz2
scripts/checkpatch.pl: Remove check for deprecated features
Signed-off-by: Vasilis Tsiligiannis <acinonyx@openwrt.gr> SVN-Revision: 37861
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl37
1 files changed, 0 insertions, 37 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index aba59c7..afb099d 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -353,27 +353,6 @@ sub deparenthesize {
$chk_signoff = 0 if ($file);
-my @dep_includes = ();
-my @dep_functions = ();
-my $removal = "Documentation/feature-removal-schedule.txt";
-if ($tree && -f "$root/$removal") {
- open(my $REMOVE, '<', "$root/$removal") ||
- die "$P: $removal: open failed - $!\n";
- while (<$REMOVE>) {
- if (/^Check:\s+(.*\S)/) {
- for my $entry (split(/[, ]+/, $1)) {
- if ($entry =~ m@include/(.*)@) {
- push(@dep_includes, $1);
-
- } elsif ($entry !~ m@/@) {
- push(@dep_functions, $entry);
- }
- }
- }
- }
- close($REMOVE);
-}
-
my @rawlines = ();
my @lines = ();
my $vname;
@@ -3099,22 +3078,6 @@ sub process {
}
}
-# don't include deprecated include files (uses RAW line)
- for my $inc (@dep_includes) {
- if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
- ERROR("DEPRECATED_INCLUDE",
- "Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
- }
- }
-
-# don't use deprecated functions
- for my $func (@dep_functions) {
- if ($line =~ /\b$func\b/) {
- ERROR("DEPRECATED_FUNCTION",
- "Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
- }
- }
-
# no volatiles please
my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {