]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - scripts/documentation-file-ref-check
ASoC: tlv320aic31xx: Add overflow detection support
[linux.git] / scripts / documentation-file-ref-check
index 078999a3fdff7542ff52db288b96d9f0848e1c49..ad9db6821824392d293716107b843573c85145d6 100755 (executable)
@@ -75,6 +75,12 @@ while (<IN>) {
                # Remove URL false-positives
                next if ($fulref =~ m/^http/);
 
+               # Remove sched-pelt false-positive
+               next if ($fulref =~ m,^Documentation/scheduler/sched-pelt$,);
+
+               # Discard some build examples from Documentation/target/tcm_mod_builder.txt
+               next if ($fulref =~ m,mnt/sdb/lio-core-2.6.git/Documentation/target,);
+
                # Check if exists, evaluating wildcards
                next if (grep -e, glob("$ref $fulref"));