net/axgbe: toggle PLL settings during rate change
[dpdk.git] / devtools / check-forbidden-tokens.awk
index fd77cdd..0268441 100755 (executable)
@@ -20,6 +20,9 @@ BEGIN {
 # state machine assumes the comments structure is enforced by
 # checkpatches.pl
 (in_file) {
+       if ($0 ~ "^@@") {
+               in_comment = 0
+       }
        # comment start
        if (index($0,comment_start) > 0) {
                in_comment = 1
@@ -54,7 +57,7 @@ BEGIN {
        }
        for (i in deny_folders) {
                re = "^\\+\\+\\+ b/" deny_folders[i];
-               if ($0 ~ deny_folders[i]) {
+               if ($0 ~ re) {
                        in_file = 1
                        last_file = $0
                }
@@ -62,13 +65,8 @@ BEGIN {
 }
 END {
        if (count > 0) {
-               print "Warning in " substr(last_file,6) ":"
-               print "are you sure you want to add the following:"
-               for (key in expressions) {
-                       if (expressions[key] > 0) {
-                               print key
-                       }
-               }
+               print "Warning in " substr(last_file,7) ":"
+               print MESSAGE
                exit RET_ON_FAIL
        }
 }