dbee180508a38c854fc5d0c0f2311e84fdccba3c
[releases.git] / deblob-check
1 #! /bin/sh
2
3 # deblob-check version 2010-12-22
4 # Inspired in gNewSense's find-firmware script.
5 # Written by Alexandre Oliva <lxoliva@fsfla.org>
6
7 # Check http://www.fsfla.org/svn/fsfla/software/linux-libre for newer
8 # versions.
9
10 # Copyright 2008, 2009, 2010 Alexandre Oliva <lxoliva@fsfla.org>
11 #
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
16 #
17 # This program is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 # General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
25 # USA
26
27
28 # usage: deblob-check [-S] [-v] [-v] [-s S] [--reverse-patch] \
29 #        [--use-...|--gen-flex] [-lDdBbCcXxPpFftVh?H] \
30 #        *.tar* patch-* [-i prefix/] *.patch *.diff...
31
32 # Look for and report too-long undocumented sequences of numbers
33 # (generally blobs in disguise) in source files, as well as requests
34 # for loading non-Free firmware.
35
36 # The order of command line flags is significant.  Flags given out of
37 # the order above won't be handled correctly, sorry.
38
39 # -s --sensitivity: Specifies the number of consecutive integral or
40 #               character constants that trigger the blob detector.
41 #               Must be followed by a blank and a number.
42
43 #    --reverse-patch: Test the removed parts of a patch, rather than
44 #               the added ones.
45
46 #    --use-awk: Choose the internal GNU awk script for the bulk of the
47 #               work.  This is the default option, if GNU awk is found.
48 #               The awk interpreter is named gawk, unless AWK is set.
49
50 #    --use-sed: Choose the internal GNU sed script for the bulk of the
51 #               work.  This is the default option, if GNU awk is not
52 #               found.
53
54 #    --use-python: Choose the internal python script.  This is not
55 #               recommended, because the regular expressions we use
56 #               invoke exponential behavior in the python engine.
57
58 #    --use-perl: Choose the internal perl script.  This is not
59 #               recommended, because our regular expressions exceed
60 #               some limits hard-coded into perl.
61
62 #    --save-script-input: Save the input that would have been fed to
63 #               any of the engines above.
64
65 #    --gen-flex: Generate a flex input file with all known blob and
66 #               false positive patterns.  It would have been a fast
67 #               regular expression processor if only the flex program
68 #               completed in reasonable time.
69
70
71 # The default sensitivity is 32 constants.
72
73 # The sensitivity, if present, must be the first option.  The action
74 # selection, if present, must be the first argument, except for the
75 # sensitivity and verbosity.
76
77 # The default can be overridden with one of:
78
79 # -l --list-blobs: list files that contain sequences that match the
80 #               blob detector test and that are not known to be false
81 #               positives.  This is the default option.
82
83 # -d --deblob --mark-blobs: print the processed input, replacing
84 #               sequences that match the blob detector test and that
85 #               are NOT known to be false positives with
86 #               /*(DEBLOBBED)*/.
87
88 # -D --cat: print the processed input, as it would have been fed to
89 #               the blob detector script.  Use -S to save the sed
90 #               script used to process it, and search for `sedcat:' in
91 #               comments to locate the relevant adaptation points.
92
93 # -b --print-marked-blobs: like -d, but print only the matching
94 #               sequences.
95
96 # -B --print-blobs: like -b, but do not deblob the sequences.
97
98 # -c --print-marked-blobs-with-context: like -b, but try to maximize
99 #               the context around the blobs.  This maximization will
100 #               sometimes disregard known false positives, if they
101 #               happen to be contained within the extended match.
102 #               This is probably an indication that the false positive
103 #               matching rule could be improved.
104
105 # -C --print-blobs-with-context: like -B, but try to maximize the
106 #               context around the blobs.
107
108 # -X --print-all-matches: print all blobs, be they known false
109 #               positives or actual blobs.
110
111 # -x --list-all-matches: list files that contain sequences that appear
112 #               to be blobs, be they known false positives or not.
113
114 # -p --mark-false-positives: print the processed input, replacing
115 #               sequences that match the blob detector test, even those
116 #               known to be false positives, with /*(DEBLOBBED)*/.
117
118 # -P --list-false-positives: list files that contain false positives.
119
120 # -f --print-marked-false-positives: like -p, but print only the
121 #               matching sequences.
122
123 # -F --print-false-positives: like -f, but do not deblob the sequences.
124
125 # -t --test: run (very minimal) self-test.
126
127 # -V --version: print a version number
128
129 # -h -? -H --help: print short or long help message
130
131
132 # debugging options:
133
134 # -S --save-scripts: save scripts and temporary files.
135
136 # -v --verbose: increase verbosity level, for internal debugging.  May
137 #               be given at most twice.
138
139
140 # file options:
141
142 # --: Don't process command-line options any further.  All following
143 #               arguments are taken as filenames.
144
145 # -i --implied-prefix --prefix: prepend the given prefix to each filename
146 #               listed after this option, when configuring false positives
147 #               and negatives.
148
149 # *.tar*: iterate over all files in the named tar file.
150
151 # *.patch, patch-*, *.diff: Look for blobs in the [ +] parts of the
152 #               *patch, unless --reverse-patch is given, in which case
153 #               the [ -] parts will be used.
154
155 # Anything else is assumed to be a source file.
156
157 # *.gz | *.bz2: Decompress automatically.
158
159
160 # The exit status is only significant for the --list options: it will
161 # be true if nothing was found, and false otherwise.
162
163 : # Mark the end of the help message.
164
165 # TODO:
166
167 # - Improve handling of command-line arguments, so as to not make the
168 # order relevant.
169
170 # - Add an option for the user to feed their own false positive
171 # patterns.
172
173 # - Add support to recognize known blobs (or other non-Free
174 # signatures, really), to speed up the scanning of files containing
175 # blobs, and to avoid attempts to disguise blobs.
176
177 # - Factor out the code in the various print_* and list_* parts of the
178 # sed script, at least in the shell sources.  Make sure they're all
179 # included and expanded in a saved --cat script though.
180
181 # - Add support for file name tagging in patterns, such that blobs or
182 # false positives are recognized only when handling the specific
183 # filename, be it stand-alone, as part of a patch or a tarball.  This
184 # should help avoid recognition of actual blobs as false positives
185 # just because there's a symbol with a different name elsewhere.
186
187 #   It is convenient that the patterns provided by the user to
188 # recognize file names can be empty (for backward compatibility), but
189 # this should ideally be phased out in favor of more precise matches.
190 # It's important that files can be recognized with leading tarball or
191 # patch names, that the filename used within the tarball contain
192 # leading garbage, and even that a partial pathname be recognizable
193 # (say recognize drivers/net/whatever.c when the input file is named
194 # ../net/whatever.c).
195
196 #   Rather than using regular expressions to recognize multiple files
197 # it's convenient (but not quite essential) that filename patterns be
198 # specifiable as regular expressions, rather than simple filenames,
199 # but there are other ways around this.
200
201 #   Maintaining begin/end markers in a stack-like fashion as part of
202 # the processed stream, and using the names in them as (optional) part
203 # of the recognition patterns, would enable us to do it.
204
205 #   Introducing annotations next to the false positives (and recognized
206 # blobs) as an early part of the process may speed things up and
207 # enable fast processing, but how to introduce the annotations quickly
208 # in the first place?  Given patterns such as
209
210 #   \(\(file1\)\(.*\)\(pat1\)\|\(file2\)\(.*\)\(pat2\)\|...\)
211
212 # how do we get sed to introduce a marker that contains file2 right
213 # before or right after pat2, without turning a big efficient regexp
214 # into a slowish sequence of s/// commands?
215
216 # - Re-check and narrow false-positive patterns to make sure they
217 # apply only to the relevant content.
218
219 # - Scripting abilities, so as to be able to automate the removal of
220 # source files or of blobs from source files in a tarball without
221 # having to extract the entire tarball (as in tar --update/--delete)
222 # would be nice.  Carrying over removed files automatically into
223 # patches would also be great, and this sort of script would be
224 # perfect to document what has been done to a tarball plus a set of
225 # patches.  Something like deblob.script:
226 #
227 #   tarball linux-2.6.24.tar.bz2
228 #   delete net/wireloss/freedom.c drivers/me/crazy.c
229 #   deblob include/linux/slab-blob-kfree.h
230 #   deconfig drivers/char/drm DRM_IS_BAD
231 #
232 #   patch patch-2.6.25-rc7.bz2
233 #   delete arch/power/over/you.c
234
235 # such that the deletes from an earlier file would carry over into the
236 # subsequent ones, and new tarballs and patch files would be generated
237 # with the libre- prefix in their basename, and the xdeltas between
238 # the original files and the modified files would be minimal, and
239 # redundant with this script and the input script while at that.
240
241 # - Improve documentation of the code.
242
243 # - Write a decent testsuite.
244
245 # - Insert your idea here. :-)
246
247 # Yeah, lots of stuff to do.  Want to help?
248
249 # This makes it much faster, and mostly immune to non-ASCII stuff, as
250 # long as a 8-bit-safe sed is used.  Probably a safe assumption these
251 # days.
252 case ${LANG+set} in set) LANG=C; export LANG;; esac
253
254 rm="rm -f"
255
256 for echo in 'echo' 'printf %s\n'; do
257   case `$echo '\nx'` in
258   '\nx') break;;
259   esac
260 done
261 case `$echo '\nx'` in
262 '\nx') ;; *) echo Cannot find out what echo to use >&2; exit 1;;
263 esac
264
265 for echo_n in "echo -n" "printf %s"; do
266   case `$echo_n '\na'; $echo_n '\nb'` in
267   '\na\nb') break;;
268   esac
269 done
270 case `$echo_n a; $echo_n b` in
271 'ab') ;; *) echo Cannot find out an echo -n equivalent to use >&2; exit 1;;
272 esac
273
274 case $1 in
275 --save-scripts | -S)
276   shift
277   rm="echo preserving"
278   ;;
279 esac
280
281 # Choose verbosity level for sed script debugging and performance
282 # analysis.
283 case $1 in
284 --verbose | -v)
285   shift
286   case $1 in
287   --verbose | -v)
288     shift
289     v="i\\
290 :
291 p
292 i\\
293 "
294     vp="2"
295     ;;
296   *)
297     v="P;i\\
298 "
299     vp="1"
300     ;;
301   esac
302   ;;
303 *)
304   v="# "
305   vp="0"
306   ;;
307 esac
308
309 sens=31 # 32 - 1
310 case $1 in
311 --sensitivity | -s)
312   sens=$2;
313   shift 2 || exit 1
314
315   if test "$sens" -gt 0 2>/dev/null; then
316     :
317   else
318     echo invalid sensitivity: $sens >&2
319     exit 1
320   fi
321
322   sens=`expr $sens - 1`
323   ;;
324 esac
325
326 reverse_patch=false
327 case $1 in
328 --reverse-patch)
329   reverse_patch=:
330   shift;
331   ;;
332 esac
333
334 prefix=/
335 case $1 in
336 --implied-prefix | --prefix| -i)
337   prefix=$2
338   case $prefix in
339   /*/) ;;
340   */) prefix=/$prefix ;;
341   /*) prefix=$prefix/ ;;
342   *) prefix=/$prefix/ ;;
343   esac
344   shift 2 || exit 1
345   ;;
346 esac
347
348 test_mode=false
349
350 name=deblob-check
351
352 set_eqscript_main () {
353   $set_main_cmd "$@"
354 }
355
356 set_eqscript_cmd () {
357   set_eqscript_main "list_blob"
358 }
359
360 set_sed_cmd () {
361   set_sed_main "
362 i\\
363 $file\\
364 /*(DEBLOB-\\
365 ERROR)*/
366 q 1"
367 }
368
369 set_flex_cmd () {
370   set_flex_main
371 }
372
373 set_save_script_input_cmd () {
374   set_save_script_input_main
375 }
376
377 set_cmd=set_eqscript_cmd
378 if (${PYTHON-python} --version) > /dev/null 2>&1; then
379   # Python will exhibit exponential behavior processing some regular
380   # expressions, but we may have already fixed them all.  (see
381   # http://swtch.com/~rsc/regexp/regexp1.html for details)
382   set_main_cmd=set_python_main
383 elif (${AWK-gawk} --re-interval --version) > /dev/null 2>&1; then
384   # GNU awk works fine, but it requires --re-interval to accept regexp
385   # ranges, which we rely on to match blobs.  We could expand the blob
386   # on our own, but, yuck.
387   set_main_cmd=set_awk_main
388 elif (${PERL-false} --version) > /dev/null 2>&1; then
389   # Don't choose perl by default.  Besides the potential for
390   # exponential behavior, we exceed some internal recursion limits.
391   set_main_cmd=set_perl_main
392 else
393   # Sed takes GBs of RAM to compile all the huge regexps in the sed
394   # script we generate with all known false positives and blobs in
395   # Linux.  However, it is somewhat faster than GNU awk and even
396   # python for long runs.
397   # Try it: deblob-check --use-sed linux-2.6.32.tar.bz2
398   set_cmd=set_sed_cmd
399 fi
400
401 case $1 in
402 --use-python)
403   shift;
404   set_cmd=set_eqscript_cmd;
405   set_main_cmd=set_python_main;
406   ;;
407
408 --use-perl)
409   shift;
410   set_cmd=set_eqscript_cmd;
411   set_main_cmd=set_perl_main;
412   ;;
413
414 --use-awk)
415   shift;
416   set_cmd=set_eqscript_cmd;
417   set_main_cmd=set_awk_main;
418   ;;
419
420 --use-sed)
421   shift;
422   set_cmd=set_sed_cmd;
423   ;;
424
425 --gen-flex)
426   shift;
427   set_cmd=set_flex_cmd;
428   ;;
429
430 --save-script-input)
431   shift;
432   set_cmd=set_save_script_input_cmd;
433   ;;
434 esac
435
436 case $1 in
437 --version | -V)
438   ${SED-sed} -e '/^# '$name' version /,/^# Written by/ { s/^# //; p; }; d' < $0
439   exit 0
440   ;;
441
442 -\? | -h)
443   ${SED-sed} -n -e '/^# usage:/,/# -h/ { /^# -/,/^$/{s/^# \(-.*\):.*/\1/p; d; }; s/^\(# \?\)\?//p; }' < $0 &&
444   echo
445   echo "run \`$name --help | more' for full usage"
446   exit 0
447   ;;
448
449 --help | -H)
450   ${SED-sed} -n -e '/^# '$name' version /,/^[^#]/ s/^\(# \?\)\?//p' < $0
451   exit 0
452   ;;
453
454 --test | -t)
455   test_mode=:
456   ;;
457
458 --mark-false-positives | -p)
459   shift;
460   set_sed_cmd () {
461     set_sed_main "b list_both" "p" "b list_matches"
462   }
463   set_eqscript_cmd () {
464     set_eqscript_main "replace_blob = print_blob = without_falsepos"
465   }
466   ;;
467
468 --print-marked-false-positives | -f)
469   shift;
470   set_sed_cmd () {
471     set_sed_main "b print_marked_matches" "" "b print_marked_matches"
472   }
473   set_eqscript_cmd () {
474     set_eqscript_main "replace_falsepos = print_falsepos"
475   }
476   ;;
477
478 --print-false-positives | -F)
479   shift;
480   set_sed_cmd () {
481     set_sed_main "b print_matches" "" "b print_matches"
482   }
483   set_eqscript_cmd () {
484     set_eqscript_main "print_falsepos"
485   }
486   ;;
487
488 --deblob | --mark-blobs | -d)
489   shift;
490   set_sed_cmd () {
491     set_sed_main "b list_blobs" "p" "p"
492   }
493   set_eqscript_cmd () {
494     set_eqscript_main "replace_blob = print_blob = print_falsepos = print_nomatch"
495   }
496   ;;
497
498 --cat | -D)
499   shift;
500   set_sed_cmd () {
501     set_sed_main \
502       "# sedcat: Actual blob detected, but there may be false positives." \
503       "# sedcat: No blob whatsoever found." \
504       "# sedcat: False positives found." \
505       "p
506 d
507 # sedcat: Just print stuff, remove this line to run the actual script."
508   }
509   set_eqscript_cmd () {
510     set_eqscript_main "print_blob = print_falsepos = print_nomatch"
511   }
512   ;;
513
514 --print-marked-blobs | -b)
515   shift;
516   set_sed_cmd () {
517     set_sed_main "b print_marked_blobs"
518   }
519   set_eqscript_cmd () {
520     set_eqscript_main "replace_blob = print_blob"
521   }
522   ;;
523
524 --print-blobs | -B)
525   shift;
526   set_sed_cmd () {
527     set_sed_main "b print_blobs"
528   }
529   set_eqscript_cmd () {
530     set_eqscript_main "print_blob"
531   }
532   ;;
533
534 --print-marked-blobs-with-context | -c)
535   shift;
536   set_sed_cmd () {
537     set_sed_main "b print_marked_cblobs"
538   }
539   set_eqscript_cmd () {
540     set_eqscript_main "with_context = replace_blob = print_blob"
541   }
542   ;;
543
544 --print-blobs-with-context | -C)
545   shift;
546   set_sed_cmd () {
547     set_sed_main "b print_cblobs"
548   }
549   set_eqscript_cmd () {
550     set_eqscript_main "with_context = print_blob"
551   }
552   ;;
553
554 --list-false-positives | -P)
555   shift;
556   set_sed_cmd () {
557     set_sed_main "" "" "
558 i\\
559 $file\\
560 /*(DEBLOB-\\
561 ERROR)*/
562 q 1"
563   }
564   set_eqscript_cmd () {
565     set_eqscript_main "list_falsepos"
566   }
567   ;;
568
569 --list-all-matches | -x)
570   shift;
571   set_sed_cmd () {
572     set_sed_main "
573 i\\
574 $file\\
575 /*(DEBLOB-\\
576 ERROR)*/
577 q 1" "" "
578 i\\
579 $file\\
580 /*(DEBLOB-\\
581 ERROR)*/
582 q 1"
583   }
584   set_eqscript_cmd () {
585     set_eqscript_main "list_blob = list_falsepos"
586   }
587   ;;
588
589 --print-all-matches | -X)
590   shift;
591   set_sed_cmd () {
592     set_sed_main "b print_both" "" "b print_matches"
593   }
594   set_eqscript_cmd () {
595     set_eqscript_main "print_blob = print_falsepos"
596   }
597   ;;
598
599 *)
600   case $1 in
601   --list-blobs | -l) shift;;
602   esac
603   case $1 in
604   -- | --implied-prefix | --prefix | -i) ;;
605   -*)
606     if test ! -f "$1"; then
607       echo "$name: \`$1' given too late or out of the proper sequence." >&2
608       echo "$name: The order of arguments is significant, see the usage." >&2
609       exit 1
610     fi
611     ;;
612   esac
613   ;;
614
615 esac
616
617 case $1 in
618 --)
619   sawdashdash=t
620   shift;;
621 esac
622
623 if $test_mode; then
624  allpass=:
625  for tool in awk perl python sed; do
626   echo testing $tool...
627
628   targs="-s 4 -i /deblob-check-testsuite/ --use-$tool"
629
630   pass=:
631
632
633   # Exercise some nasty inputs to see that we
634   # recognize them as blobs with full context.
635   test="positive context"
636   for string in \
637     "1,2,3,4" \
638     "= {
639 1, 0x2, 03, L'\x4'
640 }" \
641     "=
642 {
643   '\\x1', '\\002'
644   ,
645   {
646     { \"\\x3\", },
647     \"\\004\"
648   },
649 };" \
650     ".long 1,2
651      .long \$3,\$4" \
652     "#define X { 1, 2, \\
653                  3, 4, /* comment */ \\
654                }" \
655     "= {
656 /*
657  * multi-line
658  * comment
659  */
660  {
661    0x4c00c000, 0x00000000, 0x00060000, 0x00000000,
662  },
663 }" \
664     "= {
665 blob(
666 )
667 accept(
668 )
669 1, 2, 3, 4
670 }" \
671   ; do
672     case `echo "$string" | $0 $targs -C` in
673     "::: - :::
674 $string") ;;
675     *) echo "failed $test test for:
676 $string" >&2
677        pass=false;;
678     esac
679   done
680
681   # Make sure we do not recognize these as blobs.
682   test=negative
683   for string in \
684     "#define X { 1, 2 }
685 #define Y { 3, 4 }" \
686     " 0x00, 0x00, 0x00 " \
687     "accept(1, 2, 3,
688 4, 5, 6)" \
689   ; do
690     case `echo "$string" | $0 $targs` in
691     "") ;;
692     *) echo "failed $test test for:
693 $string" >&2
694        pass=false;;
695     esac
696   done
697
698   # Make sure we print only the lines with blobs.
699   test="only blob"
700   odd=:
701   for string in \
702     "= {
703 1, 0x2, 03, L'\x4'
704 }" \
705         "1, 0x2, 03, L'\x4'" \
706 \
707     "=
708 {
709   '\\x1', '\\002'
710   ,
711   {
712     { \"\\x3\", },
713     \"\\004\"
714   },
715 };" \
716         "  '\\x1', '\\002'
717   ,
718   {
719     { \"\\x3\", },
720     \"\\004\"" \
721 \
722     ".long 1,2
723      .long \$3,\$4" \
724         ".long 1,2
725      .long \$3,\$4" \
726 \
727     "#define X { 1, 2, \\
728                  3, 4, /* comment */ \\
729                }" \
730         "#define X { 1, 2, \\
731                  3, 4, /* comment */ \\" \
732 \
733     "= {
734 /*
735  * multi-line
736  * comment
737  */
738  {
739    0x4c00c000, 0x00000000, 0x00060000, 0x00000000,
740  },
741 }" \
742         "   0x4c00c000, 0x00000000, 0x00060000, 0x00000000," \
743 \
744     "MODULE_FIRMWARE(x);
745 MODULE_FIRMWARE(y);
746 1, 2, 3, 4; 5, 6, 7, 8;
747 9, 10, 11" \
748       "MODULE_FIRMWARE(x);
749 MODULE_FIRMWARE(y);
750 ::: - :::
751 1, 2, 3, 4; 5, 6, 7, 8;" \
752 \
753     "= {
754 blob()
755 accept()
756 1, 2, 3, 4
757 }" \
758         "blob()
759 ::: - :::
760 1, 2, 3, 4" \
761 \
762     "a blobeol y
763 x" \
764         "a blobeol y
765 x" \
766 \
767   ; do
768     if $odd; then
769       input=$string odd=false
770       continue
771     fi
772     case `echo "$input" | $0 $targs -B` in
773     "::: - :::
774 $string") ;;
775     *)
776       echo "failed $test test for:
777 $input" >&2
778       pass=false
779       ;;
780     esac
781     odd=:
782   done
783   $odd || { echo "internal testsuite failure in $test" >&2; }
784
785   # Make sure we deblob only the blobs.
786   test="deblobs"
787   odd=:
788   for string in \
789     "= { 1, 0x2, 03, L'\x4' }" \
790         "= { /*(DEBLOBBED)*/' }" \
791 \
792     "=
793 {
794   '\\x1', '\\002'
795   ,
796   {
797     { \"\\x3\", },
798     \"\\004\"
799   },
800 };" \
801         "  '\\x/*(DEBLOBBED)*/\"" \
802 \
803     ".long 1,2
804      .long \$3,\$4" \
805         ".long /*(DEBLOBBED)*/" \
806 \
807     "#define X { 1, 2, \\
808                  3, 4, /* comment */ \\
809                }" \
810         "#define X { /*(DEBLOBBED)*/, /* comment */ \\" \
811 \
812     "= {
813 /*
814  * multi-line
815  * comment
816  */
817  {
818    0x4c00c000, 0x00000000, 0x00060000, 0x00000000,
819  },
820 }" \
821         "   /*(DEBLOBBED)*/," \
822 \
823     "MODULE_FIRMWARE(x);
824 MODULE_FIRMWARE(y);
825 1, 2, 3, 4; 5, 6; 7, 8, 9, 10;
826 9, 10, 11" \
827       "/*(DEBLOBBED)*/
828 ::: - :::
829 /*(DEBLOBBED)*/; 5, 6; /*(DEBLOBBED)*/;" \
830 \
831     "= {
832 accept() blob() x blob(
833 ) y
834 }" \
835         "accept() /*(DEBLOBBED)*/ x /*(DEBLOBBED)*/ y" \
836 \
837     "= {
838 accept() blob() x blob(
839 w) y
840 }" \
841         "accept() /*(DEBLOBBED)*/ x /*(DEBLOBBED)*/ y" \
842 \
843     "a blobeol y
844 x" \
845         "a /*(DEBLOBBED)*/x" \
846 \
847   ; do
848     if $odd; then
849       input=$string odd=false
850       continue
851     fi
852     case `echo "$input" | $0 $targs -b` in
853     "::: - :::
854 $string") ;;
855     *)
856       echo "failed $test test for:
857 $input" >&2
858       pass=false
859       ;;
860     esac
861     odd=:
862   done
863   $odd || { echo "internal testsuite failure in $test" >&2; }
864
865   # How did we do?
866   if $pass; then
867     echo success for $tool
868   else
869     allpass=$pass
870   fi
871  done
872  $allpass
873  exit
874 fi
875
876 # Call addx as needed to set up more patterns to be recognized as
877 # false positives.  Takes the input filename in $1.
878
879 set_except () {
880   blob "$blobseq"
881   blobna 'request_firmware_nowait'
882   blobna 'request_firmware'
883   blobna 'request_ihex_firmware'
884   blobna 'MODULE_FIRMWARE[      ]*[(][^\n;]*[)][        ]*[;]\([        \n]*MODULE_FIRMWARE[    ]*[(][^\n;]*[)][        ]*[;]\)*'
885   blobna 'DEFAULT_FIRMWARE'
886   blobna '\([.]\|->\)firmware[  \n]*=[^=]'
887   blobna 'mod_firmware_load' # sound/
888   blobname '[.]\(fw\|bin[0-9]*\|hex\|frm\|co[dx]\|cis\|dat\|elf\|xlx\|rfb\|ucode\|img\|sbcf\|ctx\(prog\|vals\)\)["]'
889
890   case $prefix$1 in
891   */*linux*.tar* | */*kernel*.tar* | */*linux-*.*.*/*)
892     # false alarms, contain source
893     # drivers/net/wan/wanxlfw.inc_shipped -> wanxlfw.S
894     accept 'static[ ]u8[ ]firmware\[\]=[{][\n]0x60,\(0x00,\)*0x16,\(0x00,\)*\([\n]\(0x[0-9A-F][0-9A-F],\)*\)*[\n]0x23,0xFC,0x00,0x00,0x00,0x01,0xFF,0xF9,0x00,0xD4,0x61,0x00,0x06,0x74,0x33,0xFC,\([\n]\(0x[0-9A-F][0-9A-F],\)*\)*0x00[\n][}][;]'
895     # drivers/usb/serial/xircom_pgs_fw.h -> xircom_pgs.S
896     initnc 'static[ ]const[ ]struct[ ]ezusb_hex_record[ ]xircom_pgs_firmware\[\][ ]='
897     # drivers/usb/serial/keyspan_pda_fw_h -> keyspan_pda.S
898     initnc 'static[ ]const[ ]struct[ ]ezusb_hex_record[ ]keyspan_pda_firmware\[\][ ]='
899     # arch/m68k/ifpsp060/*.sa -> src/*.s
900     accept '[   ]\.long[        ]0x60ff0000,0x02360000,0x60ff0000,0x16260000[\n]'"$sepx$blobpat*"
901     accept '[   ]\.long[        ]0x60ff0000,0x17400000,0x60ff0000,0x15f40000[\n]'"$sepx$blobpat*"
902     # arch/powerpc/platforms/cell/spufs/spu_save_dump.h_shipped -> spu_save.c
903     initnc 'static[ ]unsigned[ ]int[ ]spu_save_code\[\][ ][ ]__attribute__[(][(]__aligned__[(]128[)][)][)][ ]='
904     # arch/powerpc/platforms/cell/spufs/spu_restore_dump.h_shipped -> spu_restore.c
905     initnc 'static[ ]unsigned[ ]int[ ]spu_restore_code\[\][ ][ ]__attribute__[(][(]__aligned__[(]128[)][)][)][ ]='
906     # drivers/net/ixp2000/ixp2400_tx.ucode -> ixp2400_tx.uc
907     initnc '[   ]\.initial_reg_values[  ]=[ ][(]struct[ ]ixp2000_reg_value[ ]\[\][)][ ][{]'
908     # drivers/net/ixp2000/ixp2400_rx.ucode -> ixp2400_rx.uc
909     initnc '[   ]\.initial_reg_values[  ]=[ ][(]struct[ ]ixp2000_reg_value[ ]\[\][)][ ][{]'
910
911
912     # checked:
913
914     accept '[   ][$]3[ ]=[ ][{][{]pge[ ]=[ ][{][{]ste[ ]=[ ][{]\(\([0-9][0-9a-fx{},\n   ]*\|\(pge\|ste\)[ ]=\|<repeats[ ][0-9]\+[ ]times>\)[{},\n       ]*\)*<repeats[ ]11[ ]times>[}]$'
915     accept '__clz_tab:[\n][     ]\.byte[        ]0\(,[0-5]\)\+'"$sepx$blobpat*" arch/sparc/lib/divdi3.S
916     accept 'PITBL:[\n][ ][ ]\.long[ ][ ]0xC0040000,0xC90FDAA2,'"$blobpat*" arch/sparc/lib/divdi3.S
917     accept '\(0x[0F][0F],\)\+\\[\n]\(\(0x[0F][0F],\)\+\\[\n]\)*\(0x[0F][0F],\)\+0x00' arch/m68k/mac/mac_penguin.S
918     accept '\.lowcase:[\n][     ]\.byte[ ]0x00\(,0x0[1-7]\)\+'"$sepx$blobpat*"'$' arch/s390/kernel/head.S
919     accept '_zb_findmap:[\n][ ][ ][ ][ ][ ][ ][ ][ ][ ]\.byte[ ][ ]0\(,[123],0\)\+,4'"$sepx$blobpat*"'$' arch/s390/kernel/bitmap.S
920     accept '_sb_findmap:[\n][ ][ ][ ][ ][ ][ ][ ][ ][ ]\.byte[ ][ ]8\(,0,[123]\)\+,0'"$sepx$blobpat*"'$' arch/s390/kernel/bitmap.S
921     accept '[   ]\.section[ ]__ex_table,["]a["]'"$sepx$blobpat*" arch/powerpc/lib/copyuser_64.S
922     accept '[   ]memcpy[(]src,[ ]["]\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00["].*PROGxxxx' arch/powerpc/platforms/iseries/mf.c
923     initnc 'static[ ]const[ ]unsigned[ ]int[ ]cpu_745x\[2\]\[16\][ ]=' arch/ppc/platforms/ev64260.c
924     initnc 'const[ ]unsigned[ ]char[ ]__flsm1_tab\[256\][ ]=' arch/alpha/lib/fls.c
925     accept '#define[ ]_MAP_0_32_ASCII_SEG7_NON_PRINTABLE[       ]\\[\n][        ]\(0,\)\+$' 'drivers/input/misc/map_to_7segment\.h\|include/linux/map_to_7segment\.h'
926     initc '[    ]static[ ]int[ ][ ][ ][ ][ ][ ]init_values_b\[\][ ]=' sound/oss/ad1848.c
927     initnc 'static[ ]unsigned[ ]char[ ]atkbd_set2_keycode\[512\][ ]=' drivers/input/keyboard/atkbd.c
928     accept 'desc_config1:[\n][  ]\.byte[ ]0x09,[ ]0x02'"$sepx$blobpat*" 'drivers/usb/serial/\(keyspan_pda\|xircom_pgs\).S'
929     accept 'string_mfg:[\n]\?\([;]\?[   ]\.byte[^\n]*[\n]\)\+string_mfg_end:' 'drivers/usb/serial/\(keyspan_pda\|xircom_pgs\).S'
930     accept 'string_product:[\n]\?\([;]\?[       ]\.byte[^\n]*[\n]\)\+string_product_end:' 'drivers/usb/serial/\(keyspan_pda\|xircom_pgs\).S'
931     accept '[ ][ ][ ][/][*][ ]\(SQCIF\|QSIF\|QCIF\|SIF\|CIF\|VGA\)[ ][*][/][\n][ ][ ][ ][{][\n][ ][ ][ ][ ][ ][ ][{]'"$blobpat*" drivers/media/video/pwc/pwc-nala.h
932     accept 'P[13]\([\n]#[^\n]*\)*[\n]*\([\n][0-9 ]*\)\+' drivers/video/logo/*.ppm
933     accept 'for[ ]i[ ]in[ ][    0-9\\\n]*[\n]do' 'Documentation/specialix\.txt|Documentation/serial/specialix\.txt'
934     accept '[ ][ ][ ][ ][ ][ ][ ][ ][ ]:[ ][ ][ ]3600000[ ][ ][ ]3400000[ ][ ][ ]3200000[ ][ ][ ]3000000[ ][ ][ ]2800000[ ]' Documentation/cpu-freq/cpufreq-stats.txt
935     accept '00[ ]00[\n]64[ ]01[\n]8e[ ]0b[\n][\n][0-9a-f \n]*fe[ ]fe' 'Documentation/scsi/\(sym\|ncr\)53c8xx_2.txt'
936     accept '0f[ ]00[ ]08[ ]08[ ]64[ ]00[ ]0a[ ]00[ ]-[ ]id[ ]0[\n]'"$blobpat*" 'Documentation/scsi/\(sym\|ncr\)53c8xx_2.txt'
937     accept 'default[ ]nvram[ ]data:'"$sepx$blobpat*" 'Documentation/scsi/\(sym\|ncr\)53c8xx_2.txt'
938     accept '0x0458[ ][ ][ ][ ][ ]0x7025[\n]'"$blobpat*" Documentation/video4linux/sn9c102.txt
939     accept '0x102c[ ][ ][ ][ ][ ]0x6151[\n]'"$blobpat*" Documentation/video4linux/et61x251.txt
940     accept '0x041e[ ][ ][ ][ ][ ]0x4017[\n]'"$blobpat*" Documentation/video4linux/zc0301.txt
941     accept '[ ][ ][(]gdb[)][ ]x[/]100x[ ][$]25[\n][ ][ ]0x507d2434:[ ][ ][ ][ ][ ]0x507d2434[ ][ ][ ][ ][ ][ ]0x00000000[ ][ ][ ][ ][ ][ ]0x08048000[ ][ ][ ][ ][ ][ ]0x080a4f8c'"$sepx$blobpat*" Documentation/uml/UserModeLinux-HOWTO.txt
942     accept '[ ][ ][ ][ ][ ][ ]1[ ][ ]0[ ][ ]0[ ][ ]0[ ][ ]0x308'"$sepx$blobpat*" Documentation/isdn/README.inc
943     accept 'domain<N>[ ]<cpumask>[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]10[ ]11[ ]12[ ]13[ ]14[ ]15[ ]16[ ]17[ ]18[ ]19[ ]20[ ]21[ ]22[ ]23[ ]24[ ]25[ ]26[ ]27[ ]28[ ]29[ ]30[ ]31[ ]32[ ]33[ ]34[ ]35[ ]36$' Documentation/sched-stats.txt
944     accept '[ * ]*0[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]1[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]2[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]3[\n][ *        ]*0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1' 'net/\(netfilter\|ipv4\)/ipvs/ip_vs_sync.c|net/sctp/sm_make_chunk.c|include/linux/scpt.h'
945     accept '[ ][*][ ][ ]1[ ]1[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]1[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0[ ]0' arch/x86/lguest/boot.c
946     ocomment '[ ][/][*][ ]Configure[ ]the[ ]PCI[ ]bus[ ]bursts[ ]and[ ]FIFO[ ]thresholds.' drivers/net/fealnx.c
947     ocomment '[/][*][ ]the[ ]original[ ]LUT[ ]values[ ]from[ ]Alex[ ]van[ ]Kaam[ ]<darkside@chello\.nl>' drivers/hwmon/via686a.c
948     initc 'static[ ]const[ ]unsigned[ ]char[ ]init\[\][ ]=[ ][{][^;]*MODE=0[ ][;].*SAA_7114_NTSC_HSYNC_START' drivers/media/video/saa7114.c
949
950     defsnc 'static[ ]struct[ ]cipher_testvec[ ]\(aes\|anubis\|bf\|camellia\|cts_mode\|des3_ede\|cast6\|salsa20_stream\|serpent\|tf\|tnepres\|xeta\|x\?tea\)\(_\(cbc\|ctr\(_rfc3686\)\?\|xts\)\)\?_\(enc\|dec\)_tv_template\[\][ ]=' 'crypto/\(tcrypt\|testmgr\).h'
951     defsnc 'static[ ]struct[ ]comp_testvec[ ]\(deflate\|lzo\)_\(de\)\?comp_tv_template\[\][ ]=' 'crypto/\(tcrypt\|testmgr\).h'
952     defsnc 'static[ ]struct[ ]hash_testvec[ ]\(aes_xcbc128\|crc32c\|hmac_sha2\(24\|56\)\|\(sha\|wp\)\(256\|384\|512\)\)_tv_template\[\][ ]=' 'crypto/\(tcrypt\|testmgr\).h'
953     # initnc '[         ]*\.\(digest\|entries\|input\|key\|output\|plaintext\|result\)[ \n      ]*=[ ][{"]' 'crypto/\(tcrypt\|testmgr\).h'
954
955     defsnc 'static[ ]\(const[ ]\)\?RegInitializer[ ]initData\[\][ ]__initdata[ ]=' 'drivers/ide/ali14xx\.c\|drivers/ide/legacy/ali14xx\.c'
956     defsnc 'static[ ]const[ ]u8[ ]setup\[\][ ]=' 'drivers/ide/delkin_cb\.c\|drivers/ide/pci/delkin_cb\.c'
957     defsnc 'static[ ]u8[ ]cvs_time_value\[\]\[XFER_UDMA_6[ ]-[ ]XFER_UDMA_0[ ][+][ ]1\][ ]=' 'drivers/ide/sis5513\.c\|drivers/ide/pci/sis5513\.c'
958     defsnc 'static[ ]u8[ ]\(act\|ini\|rco\)_time_value\[\]\[8\][ ]=' 'drivers/ide/sis5513\.c\|drivers/ide/pci/sis5513\.c'
959     defsnc 'static[ ]const[ ]u8[ ]speedtab[ ]\[3\]\[12\][ ]=' 'drivers/ide/umc8672\.c\|drivers/ide/legacy/umc8672\.c'
960     defsnc 'static[ ]const[ ]s8[ ]\(b43\(legacy\)\?\|bcm43xx\)_tssi2dbm_[bg]_table\[\][ ]=' net/wireless/b43/phy.c
961     defsnc 'static[ ]const[ ]char[ ]zr360[56]0_dht\[0x1a4\][ ]=' 'drivers/media/video/zr36060\.c\|drivers/media/video/zoran/zr36060\.c'
962     defsnc 'static[ ]const[ ]char[ ]zr360[56]0_dqt\[0x86\][ ]=' 'drivers/media/video/zr36060\.c\|drivers/media/video/zoran/zr36060\.c'
963     defsnc 'static[ ]u8[ ]tas3004_treble_table\[\][ ]=' sound/aoa/codecs/tas-basstreble.h
964
965     # This file contains firmwares that we deblob with high
966     # sensitivity, so make sure the sequences of numbers that are not
967     # blobs are not deblobbed.  FIXME: we should have patterns to
968     # recognize the blobs instead.
969     defsnc '[   ]static[ ]const[ ]u32[ ]test_pat\[4\]\[6\][ ]=' drivers/net/tg3.c
970     accept "[   ][}]\\(,\\?[ ]mem_tbl_5\\(70x\\|705\\|755\\|906\\)\\[\\][ ]=[ ][{]$sepx$blobpat*$sepx[}]\\)*[;]" drivers/net/tg3.c
971
972     # end of generic checked expressions.
973     # version-specific checked bits start here
974
975     # removed in 2.6.28
976     defsnc 'static[ ]unsigned[ ]char[ ]irq_xlate\[32\][ ]=' arch/sparc/kernel/sun4m_irq.c
977     defsnc 'static[ ]int[ ]logitech_expanded_keymap\[LOGITECH_EXPANDED_KEYMAP_SIZE\][ ]=' drivers/hid/hid-input.c
978     defsnc '[   ]static[ ]const[ ]\(__\)\?u8[ ]\(read_indexs\|n\(set\)\?[0-9]*\(_other\)\?\|missing\)\[[0-9x]*\][ ]=' drivers/media/video/gspca/t613.c
979     defsnc 'static[ ]const[ ]u_char[ ]nand_ecc_precalc_table\[\][ ]=' drivers/mtd/nand/nand_ecc.c
980     oprepline '#define[ ]AR5K_RATES_\(11[ABG]\|TURBO\|XR\)[ ]' drivers/net/wireless/ath5k/ath5k.h
981     defsnc 'static[ ]const[ ]struct[ ]ath_hal[ ]ar5416hal[ ]=' drivers/net/wireless/ath9k/hw.c
982     defsnc 'const[ ]unsigned[ ]char[ ]INIT_2\[127\][ ]=' drivers/video/omap/lcd_sx1.c
983
984     # removed in 2.6.24
985     accept "[ ]Psize[ ][ ][ ][ ]Ipps[ ][ ][ ][ ][ ][ ][ ]Tput[ ][ ][ ][ ][ ]Rxint[ ][ ][ ][ ][ ]Txint[ ][ ][ ][ ]Done[ ][ ][ ][ ][ ]Ndone[\\n][ ]---------------------------------------------------------------\\([\\n][ 0-9]\\+\\)\\+"'$'
986     initnc 'static[ ]u_short[ ]ataplain_map\[NR_KEYS\][ ]__initdata[ ]='
987     initnc '[   ]static[ ]const[ ]unsigned[ ]char[ ]invert5\[\][ ]='
988     initnc 'static[ ]unsigned[ ]char[ ]alpa2target\[\][ ]='
989     initnc 'static[ ]unsigned[ ]char[ ]target2alpa\[\][ ]='
990     oprepline '#define[ ]INIT_THREAD[ ][{0},]\+[        ]*\\[\n][       ]*[{0},]\+'
991     initnc 'static[ ]uint[ ]tas300\(1c\|4\)_\(master\|mixer\|treble\|bass\)_tab\[\]='
992     initnc 'static[ ]short[ ]dmasound_[au]law2dma16\[\][ ]='
993     initnc 'static[ ]const[ ]unsigned[ ]short[ ]DACVolTable\[101\][ ]='
994
995     # removed in 2.6.23
996     initnc 'static[ ]const[ ]UQItype[ ]__clz_tab\[\][ ]=' arch/arm26/lib/udivdi3.c
997     initnc '[   ]static[ ]unsigned[ ]char[ ]scale\[101\][ ]=' sound/oss/opl3sa2.c
998     initnc '[}][ ]syncs\[\][ ]=' drivers/scsi/53c7xx.c
999     initnc 'genoa_md:'"$sepx$blobpat*"'[\n][    ]\.ascii[       ]["]Genoa["]' arch/i386/boot/video.S
1000
1001     # removed in 2.6.22
1002     initnc 'Vendor[ ]ID[ ][ ]Product[ ]ID[\n]-\+[ ][ ]-\+[\n]'"$blobpat*" Documentation/video4linux/sn9c102.txt
1003     defsnc 'static[ ]short[ ][au]law2dma16\[\]' arch/ppc/8xx_io/cs4218_tdm.c
1004     defsnc '[   ]static[ ]const[ ]char[ ]minimal_ascii_table\[\]' drivers/ieee1394/csr1212.c
1005     defsnc 'static[ ]u16[ ]key_map[ ]\[256\][ ]=' drivers/media/dvb/ttpci/av7110_ir.c
1006     defsnc 'static[ ]unsigned[ ]char[ ]gf64_inv\[64\][ ]=' drivers/mtd/nand/cafe_ecc.c
1007     defsnc 'static[ ]unsigned[ ]short[ ]err_pos_lut\[4096\][ ]=' drivers/mtd/nand/cafe_ecc.c
1008     defsnc 'static[ ]unsigned[ ]char[ ]testdata\[TESTDATA_LEN\][ ]=' fs/jffs2/comprtest.c
1009
1010     # added in 2.6.25
1011     accept "%canned_values[ ]=[ ][(][\\n][      ]\\([0-9]\\+[ ]=>[ ]\\[[        \\n]\\+\\(\\([0-9]\\+\\|\\'0x[0-9a-f]\\+\\'\\),[        \\n]*\\)*\\]\\(,[ ]\\|[\\n]\\)\\)*[)][;]"
1012
1013     # from 2.6.25-rc* patches
1014     initnc '[   ]int[ ]bcomm_irq\[3[*]16\][ ]='
1015     initnc '[   ]static[ ]const[ ]int8[ ]countLeadingZerosHigh\[\][ ]='
1016     initnc 'static[ ]struct[ ]nic_qp_map[ ]nic_qp_mapping_[01]\[\][ ]='
1017     initnc 'static[ ]struct[ ]regval[ ]ov_initvals\[\][ ]='
1018     initnc 'static[ ]struct[ ]regval[ ]stk1125_initvals\[\][ ]='
1019     initnc 'static[ ]u8[ ]bnx2x_stats_len_arr\[BNX2X_NUM_STATS\][ ]='
1020     defsnc 'static[ ]const[ ]struct[ ]arb_line[ ]read_arb_data\[NUM_RD_Q\]\[MAX_RD_ORD[ ][+][ ]1\][ ]=' drivers/net/bnx2x/bnx2x_init_opts.h
1021     defsnc 'static[ ]const[ ]struct[ ]arb_line[ ]write_arb_data\[NUM_WR_Q\]\[MAX_WR_ORD[ ][+][ ]1\][ ]=' drivers/net/bnx2x/bnx2x_init_opts.h
1022     initnc '[   ][      ][}][ ]blinkrates\[\][ ]='
1023     initnc 'static[ ]const[ ]struct[ ]ath5k_ini[ ]ar5212_ini\[\][ ]='
1024     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_mode[ ]rf5413_ini_mode_end\[\][ ]='
1025     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5111\[\][ ]='
1026     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5112\[\][ ]='
1027     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5112a\[\][ ]='
1028     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5413\[\][ ]='
1029     defsnc '\(static[ ]\)\?const[ ]u\(8\|16\|32\)[ ]b43_ntab_\(\(adjustpower\|estimatepowerlt\|gainctl\|iqlt\|loftlt\|noisevar1\|tdi[24]0a\)[01]\|channelest\|frame\(lookup\|struct\)\|mcs\|pilot\|tdtrn\|tmap\)\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
1030
1031     # new in 2.6.26
1032     initnc 'static[ ]u64[ ]vec2off\[68\][ ]=' arch/ia64/kvm/process.c
1033     initnc "[   ][      ][      ]interrupts[ ]=[ ]<\\(0x\\)\\?3[ ]\\(0x\\)\\?0[ ]\\(0x\\)\\?0[ ][ ]$blobpat*>[;]" 'arch/powerpc/boot/dts/\(cm5200\|lite5200b\?\|kuroboxHG\|pcm030\|tqm5200\).dts'
1034     initnc 'static[ ]const[ ]u32[ ]crctab32\[\][ ]=' arch/x86/boot/tools/build.c
1035     defsnc 'static[ ]struct[ ]mse2snr_tab[ ]\(vsb\|qam\(64\|256\)\)_mse2snr_tab\[\][ ]=' drivers/media/dvb/frontends/au8522.c
1036     defsnc '[}][ ]\(VSB\|QAM\(64\|256\)\?\)_mod_tab\[\][ ]=' 'drivers/media/dvb/frontends/au8522\(_dig\)\?\.c'
1037     initnc '[}][ ]itd1000_\(lpf_pga\|fre_values\)\[\][ ]=' drivers/media/dvb/frontends/itd1000.c
1038     initnc '[}][ ]\(vsb\|qam\(64\|256\)\)_snr_tab\[\][ ]=' drivers/media/dvb/frontends/s5h1411.c
1039     initnc '[}][ ]snr_tab\[\][ ]=' drivers/media/dvb/frontends/tda10048.c
1040     initnc 'static[ ]u32[ ]reg_init_initialize\[\][ ]=' drivers/media/video/saa717x.c
1041     initnc 'static[ ]const[ ]u32[ ]\(main\|gear\)_seedset\[BACKOFF_SEEDSET_ROWS\]\[BACKOFF_SEEDSET_LFSRS\][ ]=' drivers/net/forcedeth.c
1042     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_mode[ ]rf24\(13\|25\)_ini_mode_end\[\][ ]=' drivers/net/wireless/ath5k/initvals.c
1043     initnc 'static[ ]const[ ]u16[ ]wm9713_reg\[\][ ]=' sound/soc/codecs/wm9713.c
1044
1045     # new in 2.6.27
1046     accept '[   ]\.section[ ]__ex_table,["]a["]'"$sepx$blobpat*" 'arch/x86/lib/copy_user_\(nocache_\)\?64.S'
1047     accept 'desc_config1:[\n][  ]\.byte[ ]0x09,[ ]0x02'"$sepx$blobpat*" 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
1048     accept 'string_mfg:[\n]\?\([;]\?[   ]\.byte[^\n]*[\n]\)\+string_mfg_end:' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
1049     accept 'string_product:[\n]\?\([;]\?[       ]\.byte[^\n]*[\n]\)\+string_product_end:' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
1050     accept ':03000000020200F9[\n]:040023000205\(9B0037\|5F0073\)[\n]\(:050030000000000000CB[\n]\|:0400430002010000B6[\n]\)*'"$sepx$blobpat*"'[\n]:\(0E06E0006400670065007400060334003700F4\|0606A000060334003700E0\)[\n]:00000001FF' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).HEX'
1051     accept ':100000000C004000000000000000000000000000A4[\n]'"$sepx$blobpat*"'[\n][/][*][ ]DSP56001[ ]bootstrap[ ]code[ ][*][/]' firmware/dsp56k/bootstrap.bin.ihex
1052     initnc 'static[ ]const[ ]u16[ ]uda1380_reg\[UDA1380_CACHEREGNUM\][ ]=' sound/soc/codecs/uda1380.c
1053     initnc 'static[ ]const[ ]u16[ ]wm8510_reg\[WM8510_CACHEREGNUM\][ ]=' sound/soc/codecs/wm8510.c
1054     initnc 'static[ ]const[ ]unsigned[ ]short[ ]atkbd_unxlate_table\[128\][ ]=' drivers/input/keyboard/atkbd.c
1055     initnc 'static[ ]const[ ]unsigned[ ]char[ ]usb_kbd_keycode\[256\][ ]=' drivers/hid/usbhid/usbkbd.c
1056     initnc '[   ][      ]u8[ ]buf,[ ]bufs\[\][ ]=' drivers/media/dvb/dvb-usb/cxusb.c
1057     initnc 'static[ ]struct[ ]dvb_pll_desc[ ][^\n]*[ ]=' drivers/media/dvb/frontends/dvb-pll.c
1058     initnc '[   ]static[ ]int[ ]sysdiv_to_div_x_2\[\][ ]=' arch/powerpc/platforms/512x/clock.c
1059     defsnc 'static[ ]const[ ]__u8[ ]cx_inits_\(176\|320\|352\|640\)\[\][ ]=' drivers/media/video/gspca/conex.c
1060     defsnc 'static[ ]const[ ]__u8[ ]cx_jpeg_init\[\]\[8\][ ]=' drivers/media/video/gspca/conex.c
1061     defsnc 'static[ ]const[ ]__u8[ ]cxjpeg_\(640\|352\|320\|176\|qtable\)\[\]\[8\][ ]=' drivers/media/video/gspca/conex.c
1062     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]quant\[\]\[0x88\][ ]=' drivers/media/video/gspca/jpeg.h
1063     defsnc 'static[ ]unsigned[ ]char[ ]huffman\[\][ ]=' drivers/media/video/gspca/jpeg.h
1064     initc '[    ]\?static[ ]const[ ]struct[ ]ov_i2c_regvals[ ]norm_76[1247]0\[\][ ]=' drivers/media/video/gspca/ov519.c
1065     initnc 'static[ ]const[ ]__u8[ ]pac207_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/pac207.c
1066     initnc 'static[ ]const[ ]__u8[ ]pac7311_jpeg_header\[\][ ]=' drivers/media/video/gspca/pac7311.c
1067     defsnc 'static[ ]const[ ]__u8[ ]\(start\|page[34]\)_73\(02\|11\)\[\][ ]=' 'drivers/media/video/gspca/pac73\(02\|11\)\.c'
1068     initnc 'static[ ]const[ ]__u8[ ]init\(Hv7131\|Ov\(6650\|7630\(_3\)\?\)\|Pas\(106\|202\)\|Tas51[13]0\)\[\][ ]=' drivers/media/video/gspca/sonixb.c
1069     initnc 'static[ ]const[ ]__u8[ ]\(hv7131\|ov\(6650\|7630\(_3\)\?\)\|pas\(106\|202\)\|tas51[13]0\)_sensor_init\(_com\)\?\[\]\[8\][ ]=' drivers/media/video/gspca/sonixb.c
1070     defsnc 'static[ ]\(const[ ]\)\?\(__\)\?u8[ ]\(mt9v111\|sp80708\|hv7131r\|mi0360b\?\|mo4000\|ov76\([36]0\|48\)\|om6802\|po1030\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
1071     initnc 'static[ ]const[ ]__u8[ ]qtable4\[\][ ]=' drivers/media/video/gspca/sonixj.c
1072     initnc 'static[ ]const[ ]__u16[ ]\(spca500_visual\|Clicksmart510\)_defaults\[\]\[3\][ ]=' drivers/media/video/gspca/spca500.c
1073     initnc 'static[ ]const[ ]__u8[ ]qtable_\(creative_pccam\|kodak_ez200\|pocketdv\)\[2\]\[64\][ ]=' drivers/media/video/gspca/spca500.c
1074     initnc 'static[ ]const[ ]__u16[ ]spca501c\?_\(\(3com\|arowana\|mysterious\)_\)\?\(init\|open\)_data\[\]\[3\][ ]=' drivers/media/video/gspca/spca501.c
1075     defsnc 'static[ ]const[ ]\(__u16\|u8\)[ ]spca505b\?_\(init\|open\)_data\(_ccd\)\?\[\]\[3\][ ]=' drivers/media/video/gspca/spca505.c
1076     defsnc 'static[ ]const[ ]\(__\)\?u16[ ]spca508\(cs110\|_sightcam2\?\|_vista\)\?_init_data\[\]\[[23]\][ ]=' drivers/media/video/gspca/spca508.c
1077     initnc 'static[ ]const[ ]__u16[ ]\(spca561\|rev72a\)_init_data3\?\[\]\[2\][ ]=' drivers/media/video/gspca/spca561.c
1078     defsnc 'static[ ]const[ ]\(__u16\|struct[ ]cmd\)[ ]spca504\(_pccam600\|A_clicksmart420\)_\(init\|open\)_data\[\]\(\[3\]\)\?[ ]=' drivers/media/video/gspca/sunplus.c
1079     defsnc 'static[ ]const[ ]\(__\)\?u8[ ]qtable_\(creative_pccam\|spca504_default\)\[2\]\[64\][ ]=' drivers/media/video/gspca/sunplus.c
1080     initnc 'static[ ]const[ ]__u8[ ]\(effects\|gamma\)_table\[\(MAX_[A-Z]*\|[A-Z]*_MAX\)\]\[[0-9]*\][ ]=' drivers/media/video/gspca/t631.c
1081     initnc 'static[ ]const[ ]\(__\)\?u8[ ]tas5130a_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/t613.c
1082     defsnc 'static[ ]const[ ]struct[ ]usb_action[ ]\(cs2102\|hdcs2020xx\|icm105a\(xx\)\?\|ov7630c\|mt9v111_[13]\|pb0330\([3x]x\)\?\|mi0360soc\)_Initial\(Scale\)\?\[\][ ]=' drivers/media/video/gspca/zc3xx.c
1083     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_agc\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
1084     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_ofdm\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
1085     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_power_cck\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
1086     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_power_cck_ch14\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
1087     initnc 'static[ ]const[ ]__u16[ ]t10_dif_crc_table\[256\][ ]=' lib/crc-t10dif.c
1088     initnc 'static[ ]crb_128M_2M_block_map_t[ ]crb_128M_2M_map\[64\][ ]=' drivers/net/netxen/netxen_hw.c
1089     initnc 'static[ ]const[ ]__u16[ ]crc10_table\[256\][ ]=' drivers/usb/serial/safe_serial.c
1090     accept '[   ]*\([ ]*0\)*\([ ]*1\)*[\n][     ]*0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]*2[ ]3[ ]4[ ]5[ ]6[ ]7' Documentation/bt8xxgpio.txt
1091     initnc '[   ]static[ ]int[ ]exp_lut\[256\][ ]=' drivers/isdn/mISDN/dsp_audio.c
1092     initnc 'static[ ]const[ ]u32[ ]bf_pbox\[16[ ][+][ ]2\][ ]=' drivers/isdn/mISDN/dsp_blowfish.c
1093     initnc 'static[ ]const[ ]u32[ ]bf_sbox\[256[ ][*][ ]4\][ ]=' drivers/isdn/mISDN/dsp_blowfish.c
1094     initnc 'static[ ]u8[ ]sample_\(german_\(all\|old\)\|american_\(dialtone\|ringing\|busy\)\|special[123]\|silence\)\[\][ ]=' drivers/isdn/mISDN/dsp_tones.c
1095     initnc 'struct[ ]pattern[ ][{][^}]*int[ ]tone[;][^}]*[}][ ]pattern\[\][ ]=' drivers/isdn/mISDN/dsp_tones.c
1096     initnc 'static[ ]u8[ ]\([au]\|_4\)law_to_\([ua]law\|4bit\)\[256\][ ]=' drivers/isdn/mISDN/l1oip_codec.c
1097     initnc 'static[ ]unsigned[ ]char[ ]banner_table\[\][ ]=' arch/sh/boards/mach-microdev/led.c
1098     defsnc '[   ]static[ ]const[ ]int[ ]desc_idx_table\[\][ ]=' arch/arm/include/asm/hardware/iop3xx-adma.h
1099     defsnc 'static[ ]\(const[ ]\)\?u32[ ]ar\(5416\|9280\)\(Modes\(_fast_clock\)\?\|Common\|BB_RfGain\|Bank6\(TPC\)\?\|Addac\)\(_91[06]0\(_\?1_1\)\?\|_9280\(_2\)\?\)\?\[\]\[[236]\][ ]=' 'drivers/net/wireless/ath9k/\(ar\(5008\|9001\)_\)\?initvals\.h'
1100
1101     # new in 2.6.28
1102     accept '\(static[ ]\)\?const[ ]char[ ]\(inv\)\?parity\[256\][ ]=[ ][{][      \n01,]*[}][;]' 'Documentation/mtd/nand_ecc\.txt\|drivers/mtd/nand/nand_ecc\.c'
1103     defsnc 'static[ ]const[ ]char[ ]\(bitsperbyte\|addressbits\)\[256\][ ]=' drivers/mtd/nand/nand_ecc.c
1104     defsnc 'static[ ]struct[ ]pinmux_cfg_reg[ ]pinmux_config_regs\[\][ ]=' 'arch/sh/kernel/cpu/sh2a/pinmux-sh7203\.c\|arch/arm/mach-shmobile/pfc-sh73[67]7\.c'
1105     defsnc '[   ]static[ ]const[ ]u8[ ]e_keymap\[\][ ]=' drivers/hid/hid-lg.c
1106     defsnc 'DEFINE_DEFAULT_PDR[(]0x0161,[ ]256,' drivers/net/wireless/hermes_dld.c
1107     defsnc 'static[ ]const[ ]int[ ]isink_cur\[\][ ]=' drivers/regulator/wm8350-regulator.c
1108     defsnc 'static[ ]const[ ]s16[ ]\(converge_speed_ipb\?\|LAMBDA_table\[4\]\)\[101\][ ]=' drivers/staging/go7007/go7007-fw.c
1109     defsnc 'static[ ]const[ ]u32[ ]addrinctab\[33\]\[2\][ ]=' drivers/staging/go7007/go7007-fw.c
1110     defsnc 'static[ ]const[ ]u8[ ]\(default_intra_quant_table\|\(val\|bits\)_[ad]c_\(lu\|chro\)minance\)\[\][ ]=' drivers/staging/go7007/go7007-fw.c
1111     defsnc 'static[ ]const[ ]int[ ]zz\[64\][ ]=' drivers/staging/go7007/go7007-fw.c
1112     defsnc '[   ]u16[ ]pack\[\][ ]=' drivers/staging/go7007/go7007-fw.c
1113     defsnc 'static[ ]u8[ ]\(initial\|channel\)_registers\[\][ ]=' 'drivers/staging/go7007/wis-\(ov7640\|saa7113\|tw2804\).c'
1114     defsnc 'u16[ ]MTO_One_Exchange_Time_Tbl_[ls]\[MTO_MAX_FRAG_TH_LEVELS\]\[MTO_MAX_DATA_RATE_LEVELS\][ ]=' drivers/staging/winbond/mto.c
1115     defsnc 'u32[ ]\(al2230_txvga_data\|w89rf242_txvga_old_mapping\)\[\]\[2\][ ]=' drivers/staging/winbond/reg.c
1116     defsnc 'static[ ]const[ ]UINT16[ ]crc16tab\[256\][ ]=' drivers/staging/wlan-ng/hfa384x.c
1117     defsnc 'static[ ]const[ ]\(UINT32\|u32\)[ ]wep_crc32_table\[256\][ ]=' drivers/staging/wlan-ng/p80211wep.c
1118     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]wm_vol\[256\][ ]=' 'sound/pci/ice1712/\(phase\|aureon\)\.c'
1119     defsnc 'static[ ]const[ ]u16[ ]wm8900_reg_defaults\[WM8900_MAXREG\][ ]=' sound/soc/wm8900.c
1120     defsnc '[}][ ]\(clk_sys_ratios\|bclk_divs\)\[\][ ]=' 'sound/soc/wm890[34]\.c'
1121     defsnc 'static[ ]u8[ ]af9015_ir_table_\(leadtek\|twinhan\|a_link\|msi\|mygictv\|kworld\)\[\][ ]=' drivers/media/dvb/dvb-usb/af9015.h
1122     defsnc 'static[ ]struct[ ]snr_table[ ]\(qpsk\|qam\(16\|64\)\)_snr_table\[\][ ]=' drivers/media/dvb/frontends/af9013_priv.h
1123     defsnc 'static[ ]struct[ ]regdesc[ ]\(ofsm_init\|tuner_init_\(env77h11d5\|mt2060\(_2\)\?\|mxl500\(3d\|5\)\|qt1010\|mc44s803\|unknown\|tda18271\)\)\[\][ ]=' drivers/media/dvb/frontends/af9013_priv.h
1124     defsnc 'static[ ]u8[ ]stv0288_earda_inittab\[\][ ]=' drivers/media/dvb/frontends/eds1547.h
1125     defsnc 'static[ ]u8[ ]serit_sp1511lhb_inittab\[\][ ]=' drivers/media/dvb/frontends/si21xx.c
1126     defsnc 'static[ ]u8[ ]stv0288_inittab\[\][ ]=' drivers/media/dvb/frontends/stv0288.c
1127     defsnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_b\[\][ ]=' drivers/net/wireless/rt2x00/rt2400pci.c
1128
1129     # request_firmware matches for 2.6.28
1130     accept 'D:[ ]Firmware[ ]loader[ ][(]request_firmware[)]' CREDITS
1131     accept 'FIRMWARE[ ]LOADER[ ][(]request_firmware[)]' MAINTAINERS
1132     accept '[   ]-[ ]request_firmware[(][)][ ]hotplug[ ]interface[ ]info.' Documentation/00-INDEX
1133     accept 'This[ ]driver[ ]requires[ ]a[ ]patch[ ]for[ ]firmware_class[^\n]*[\n]request_firmware_nowait[ ]function\.' Documentation/dell_rbu.txt
1134     accept '\([ ]request_firmware[(][)][ ]hotplug[ ]interface:[\n][ ]--*[\n].*[ ]\)\?-[ ]request_firmware_nowait[(][)][ ]is[ ]also[ ]provided[ ]for[ ]convenience' Documentation/firmware_class/README
1135     accept 'Still,[ ]there[ ]are[ ]kernel[ ]threads[ ]that[ ]may[ ]want.*For[ ]example,[ ]if[ ]request_.*_firmware[(][)][ ]will[ ]fail[ ]regardless' Documentation/power/freezing-of-tasks.txt
1136     accept 'Also,[ ]there[ ]may[ ]be[ ]some[ ]operations,.*calling[ ]request_firmware[(][)][ ]from[ ]their[ ].resume[(][)][ ]routines' Documentation/power/notifiers.txt
1137     accept 'There[ ]is[ ]an[ ]USB[ ]interface[ ]for[ ]downloading[/]uploading.*request_firmware[ ]interface\.' Documentation/video4linux/si470x.txt
1138     accept '[   ]-[ ]move[ ]firmware[ ]loading[ ]to[ ]request_firmware[(][)]' drivers/staging/slicoss/README
1139     accept 'config[ ]FIRMWARE_IN_KERNEL.*let[ ]firmware[ ]be[ ]loaded[ ]from[ ]userspace\.' drivers/base/Kconfig
1140     accept '[    ]*and[ ]request_firmware[(][)][ ]in[ ]the[ ]source' drivers/base/Kconfig
1141     accept '\(static[ ]int[\n ]\)\?_request_firmware[(]const[ ]struct[ ]firmware[ ][*][*]firmware_p,[^{]*[\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}][\n]' drivers/base/firmware_class.c
1142     accept 'static[ ]int[\n ]request_firmware_work_func[(]void[ ][*]arg[)][\n][{]\([\n]\+[^\n}][^\n]*\)*ret[ ]=[ ]_request_firmware[(][^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}][\n]' drivers/base/firmware_class.c
1143     accept '[/][*][*][\n][ ][*][ ]request_firmware:[ ]-[ ]send[ ]firmware[ ][^{]*[\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}][\n]' drivers/base/firmware_class.c
1144     accept '[/][*][*][\n][ ][*][ ]request_firmware_nowait\(:\|[ ]-\)[ ]asynchronous[ ]version[^{]*[\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}][\n]' drivers/base/firmware_class.c
1145     accept 'EXPORT_SYMBOL[(]request_firmware\(_nowait\)\?[)][;]' drivers/base/firmware_class.c
1146     accept 'int[ ]request_firmware\(_nowait\)\?[(][^;]*[)][;]' include/linux/firmware.h
1147     accept 'static[ ]inline[ ]int[ ]request_firmware\(_nowait\)\?[(][^{]*[)][\n][{][\n][        ]return[ ]-EINVAL[;][\n][}]' include/linux/firmware.h
1148     accept 'static[ ]inline[ ]int[\n]\(maybe_\)\?reject_firmware\(_nowait\)\?[(][^{;]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]' include/linux/firmware.h
1149
1150     accept 'static[ ]inline[ ]int[ ]request_ihex_firmware\?[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}][\n]' include/linux/ihex.h
1151     ocomment '[/][*][ ]Optional[ ]firmware\([^\n]*[\n][ ][*]\)*[^\n]*[ ]MODULE_FIRMWARE[(][)]'
1152     oprepline '#define[ ]MODULE_FIRMWARE[(]_firmware[)]' include/linux/module.h
1153     accept '[ ][*][ ]Sample[ ]code[ ]on[ ]how[ ]to[ ]use[ ]request_firmware[(][)][ ]from[ ]drivers\.' samples/firmware_class/firmware_sample_driver.c
1154     accept '[   ]\(retval\|error\)[ ]=[ ]request_firmware\(_nowait\)\?[(][^;]*["]sample_driver_fw["],[^;]*[)][;]' samples/firmware_class/firmware_sample_driver.c
1155     ocomment '[ ][/][*][ ]request_firmware[ ]blocks[ ]until[ ]userspace[ ]finished' samples/firmware_class/firmware_sample_driver.c
1156     accept '[   ][      ][      ]*["][ ]request_firmware_nowait[ ]failed' samples/firmware_class/firmware_sample_driver.c
1157
1158     # We used to remove these in early versions of Linux-libre.
1159     # They're now believed to be mere initialization data, rather than
1160     # code disguised as such, and they're not long enough so as to
1161     # render the software non-Free.
1162     defsnc 'static[ ]u8[ ]tda10021_inittab\[0x40\]=' drivers/media/dvb/frontends/tda10021.c
1163     defsnc 'static[ ]u8[ ]tda8083_init_tab[ ]\[\][ ]=' drivers/media/dvb/frontends/tda8083.c
1164     defsnc 'static[ ]u8[ ]ves1820_inittab\[\][ ]=' drivers/media/dvb/frontends/ves1820.c
1165     defsnc 'static[ ]u8[ ]init_1[89]93_w\?tab[ ]\?\[\][ ]=' drivers/media/dvb/frontends/ves1x93.c
1166     defsnc 'static[ ]const[ ]u8[ ]saa7113_tab\[\][ ]=' drivers/media/dvb/ttpci/budget-av.c
1167     defsnc 'static[ ]u8[ ]philips_sd1878_inittab\[\][ ]=' drivers/media/dvb/ttpci/budget-av.c
1168     defsnc 'const[ ]struct[ ]Kiara_table_entry[ ]Kiara_table\[PSZ_MAX\]\[6\]\[4\][ ]=' drivers/media/video/pwc/pwc-kiara.c
1169     defsnc 'const[ ]unsigned[ ]int[ ]KiaraRomTable[ ]\[8\]\[2\]\[16\]\[8\][ ]=' drivers/media/video/pwc/pwc-kiara.c
1170     defsnc 'const[ ]struct[ ]Timon_table_entry[ ]Timon_table\[PSZ_MAX\]\[PWC_FPS_MAX_TIMON\]\[4\][ ]=' drivers/media/video/pwc/pwc-timon.c
1171     defsnc 'const[ ]unsigned[ ]int[ ]TimonRomTable[ ]\[16\]\[2\]\[16\]\[8\][ ]=' drivers/media/video/pwc/pwc-timon.c
1172     defsnc '[   ]static[ ]const[ ]struct[ ]struct_initData[ ]initData\[\][ ]=' drivers/media/video/usbvideo/ibmcam.c
1173     defsnc 'static[ ]const[ ]u8[ ]rtl8187b_reg_table\[\]\[3\][ ]=' drivers/net/wireless/rtl8187_dev.c
1174     defsnc 'unsigned[ ]char[ ]\(IDX_ACTIVATE_\(READ\|WRITE\)\|\(CM\|ULP\)_\(ENABLE\|SETUP\)\|DM_ACT\|IPA_PDU_HEADER\|\(READ\|WRITE\)_CCW\)\[\][ ]=' drivers/net/qeth_core_mpc.c
1175     defsnc 'static[ ]unsigned[ ]char[ ]camera_ncm03j_magic\[\][ ]=' 'arch/sh/boards/\(board-ap325rxa\.c\|mach-ap325rxa/setup\.c\)'
1176     defsnc 'static[ ]const[ ]unsigned[ ]short[ ]\(sync\|magic[0-3]\)_data\[\][ ]=' arch/sh/boards/mach-migor/lcd_qvga.c
1177     defsnc 'static[ ]unsigned[ ]char[ ]camera_ov772x_magic\[\][ ]=' arch/sh/boards/mach-migor/setup.c
1178     defsnc 'static[ ]struct[ ]chips_init_reg[ ]chips_init_[sgacfx]r\[\][ ]=' 'drivers/video/\(asiliant\|chips\)fb.c'
1179
1180     # This one is quite suspicious, but it's small enough (64 bytes
1181     # total) that it's believable that it could be actual source code.
1182     defsnc 'static[ ]const[ ]__u8[ ]cx11646_fw1\[\]\[3\][ ]=' drivers/media/video/gspca/conex.c
1183
1184     # Hunting down non-Free firmware-loading code and instructions.
1185     # Firmware names are to be caught anywhere.
1186
1187     # 2.6.26 but not later
1188
1189     blobname 'atmsar1[12]\.\(x\|start\|regions\|data\|bin[12]\?\)' 'drivers/atm/\(Makefile\|ambassador\.c\)'
1190     blob '#\(define\|include\)[ ]UCODE2\?[(][^\n]*' drivers/atm/ambassador.c
1191     blob 'static[ ]\(u32\|region\)[ ]__devinitdata[ ]ucode_\(start\|\(regions\|data\)\[\]\)[ ]=[^;]*[;]' drivers/atm/ambassador.c
1192     blob '\(#\(ifdef[ ]AMB_NEW_MICROCODE\|else\|endif\)[\n]#\(define\|include\)[ ]UCODE2\?[(][^\n]*[\n]\)\+\([\n]*static[ ]\(u32\|region\)[ ]__devinitdata[ ]ucode_\(start\|\(regions\|data\)\[\]\)[ ]=[^;]*[;]\)*' drivers/atm/ambassador.c
1193
1194     blobname '\(pca\|sba\)200e\(_ecd\)\?\.\(data\|bin[12]\?\)' 'drivers/atm/\(Makefile\|fore200e\(_mkfirm\)\?\.c\)'
1195     blobna '[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*PCA-200E[ ]firmware[ ][*][/]' drivers/atm/fore200e_mkfirm.c
1196     blobna '_fore200e_\(pca\|sba\)_fw_\(data\|size\)' drivers/atm/fore200e.c
1197     blob '#ifdef[ ]CONFIG_ATM_FORE200E_\(PCA\|SBA\)\([\n]extern[ ]const[ ]unsigned[ ]\(char\|int\)[ ]*_fore200e_\(pca\|sba\)_fw_\(data\[\]\|size\)[;]\)\+[\n]#endif\([\n]\+#ifdef[ ]CONFIG_ATM_FORE200E_\(PCA\|SBA\)\([\n]extern[ ]const[ ]unsigned[ ]\(char\|int\)[ ]*_fore200e_\(pca\|sba\)_fw_\(data\[\]\|size\)[;]\)\+[\n]#endif\)*' drivers/atm/fore200e.c
1198
1199     # 2.6.27 but not later
1200
1201     blob 'cas_saturn_patch_t[ ]cas_saturn_patch\[\][ ]=[ ][{][^;]*[}][;]' drivers/net/cassini.h
1202     accept '[   ][ ][ ]firmware[ ]files[ ]--[ ]the[ ]same[ ]names[ ]which[ ]appear[ ]in[ ]MODULE_FIRMWARE[(][)]' drivers/base/Kconfig
1203
1204     # 2.6.28 or earlier
1205
1206     blobname 'atmsar11\.fw' drivers/atm/ambassador.c
1207
1208     blob '\(#ifdef[ ]__\(LITTLE\|BIG\)_ENDIAN[\n]\)\?#define[ ]FW_EXT[ ]["]\(_ecd\)\?\.bin2\?["]\([\n]#else[\n]#define[ ]FW_EXT[ ]["]\(_ecd\)\?\.bin2\?["]\)*\([\n]#endif\)\?' drivers/atm/fore200e.c
1209     blobna 'sprintf[(][^;]*fore200[^;]*FW_EXT[^;]*[)][;]' drivers/atm/fore200e.c
1210     blobname '\(pc\|sb\)a200e\(_ecd\)\?\.bin[12]\?' drivers/atm/fore200e.c
1211     blobna 'The[ ]supplied[ ]firmware[ ]images.*http:[/][/][^\n]*\(fore\|FORE_Systems\).*Rebuild[ ]and[ ]re-install[^.]*\.' Documentation/networking/fore200e.txt
1212
1213     blobname 'intelliport2\.bin' drivers/char/ip2/ip2main.c
1214
1215     blob 'static[ ]unsigned[ ]char[ ]warp_g[24]00_t2\?gzs\?a\?f\?\[\][ ]=[ ][{][^{};]*[}][;]\([\n][\n]*static[ ]unsigned[ ]char[ ]warp_g[24]00_t2\?gzs\?a\?f\?\[\][ ]=[ ][{][^{};]*[}][;]\)*' drivers/gpu/drm/mga/mga_ucode.h
1216     blob '\(#define[ ]WARP_UCODE_\(SIZE\|INSTALL\)[(][ ]*which\([^\n]*\\[       ]*[\n]\)*[^\n]*\|static[ ]const[ ]unsigned[ ]int[ ]mga_warp_g[24]00_microcode_size[ ]=[^;]*[;]\|static[ ]int[ ]mga_warp_install_g[24]00_microcode[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]\)\([\n][\n]*\(#define[ ]WARP_UCODE_\(SIZE\|INSTALL\)[(][ ]*which\([^\n]*\\[   ]*[\n]\)*[^\n]*\|static[ ]const[ ]unsigned[ ]int[ ]mga_warp_g[24]00_microcode_size[ ]=[^;]*[;]\|static[ ]int[ ]mga_warp_install_g[24]00_microcode[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]\)\)*' drivers/gpu/drm/mga/mga_warp.c
1217     blobna '\(case[ ]MGA_CARD_TYPE_G[^:]*:[     \n]*\)\+return[ ][^;]*mga_warp[^;]*microcode[^;]*[;]\([         \n]*\(case[ ]MGA_CARD_TYPE_G[^:]*:[     \n]*\)\+return[ ][^;]*mga_warp[^;]*microcode[^;]*[;][   ]*\)*' drivers/gpu/drm/mga/mga_warp.c
1218
1219     blob 'static[ ]u32[ ]r128_cce_microcode\[\][ ]=[ ][{][^;]*[}][;]' drivers/gpu/drm/r128/r128_cce.c
1220     blob 'static[ ]void[ ]r128_cce_load_microcode[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]' drivers/gpu/drm/r128/r128_cce.c
1221     # blobna 'R128_WRITE[(]R128_PM4_MICROCODE_DATA[HL],[\n       ]*r128_cce_microcode\[i[ ][*][ ]2\([ ][+][ ]1\)\?\][)]\([;][\n         ]*R128_WRITE[(]R128_PM4_MICROCODE_DATA[HL],[\n   ]*r128_cce_microcode\[i[ ][*][ ]2\([ ][+][ ]1\)\?\][)]\)*' drivers/gpu/drm/r128/r128_cce.c
1222
1223     blob 'static[ ]const[ ]u32[ ]R[SV0-9]*[05]_\(c\|pf\)p_microcode\[\]\(\[[23]\]\)\?[ ]=[ ][{][^;]*[}][;]\([\n][\n]*static[ ]const[ ]u32[ ]R[SV0-9]*[05]_\(c\|pf\)p_microcode\[\]\(\[[23]\]\)\?[ ]=[ ][{][^;]*[}][;]\)*' 'drivers/gpu/drm/radeon/\(radeon\|r600\)_microcode\.h'
1224     blob 'static[ ]void[ ]r\(adeon\|[167]00\)_cp_load_microcode[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*cp_microcode[^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]' 'drivers/gpu/drm/radeon/r\(\(adeon\|600\)_cp\|100\)\.c'
1225     # blobna 'RADEON_WRITE[(]R\(ADEON\|600\)_CP_\(ME_RAM\|PFP_UCODE\)_DATA[HL]\?,[\n     ]*R[SV0-9]*[05]_\(c\|pf\)p_microcode\[i\]\(\[[012]\]\)\?[)]\([;][\n    ]*RADEON_WRITE[(]R\(ADEON\|600\)_CP_\(ME_RAM\|PFP_UCODE\)_DATA[HL]\?,[\n         ]*R[SV0-9]*[05]_\(c\|pf\)p_microcode\[i\]\(\[[012]\]\)\?[)]\)*' 'drivers/gpu/drm/radeon/\(radeon\|r600\)_cp\.c'
1226
1227     blob 'sub[ ]\(sp887[0x]\|tda1004\(5\|6\(lifeview\)\?\)\|av7110\|dec\(2\(00\|54\)0t\|3000s\)\|opera1\|vp7041\|dibusb\|nxt200[24]\|cx\(23\(1xx\|885\)\|18\)\|pvrusb2\|or51\(211\|132_\(qam\|vsb\)\)\|bluebird\|mpc718\|af9015\|ngene\)[ ]*[{]\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]\([\n]\+sub[ ]\(sp887[0x]\|tda1004\(5\|6\(lifeview\)\?\)\|av7110\|dec\(2\(00\|54\)0t\|3000s\)\|opera1\|vp7041\|dibusb\|nxt200[24]\|cx\(23\(1xx\|885\)\|18\)\|pvrusb2\|or51\(211\|132_\(qam\|vsb\)\)\|bluebird\|mpc718\|af9015\|ngene\)[ ]*[{]\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]\)*' Documentation/dvb/get_dvb_firmware
1228     blobna 'Please[ ]use[^\n]*firmware[^\n]*sp887x[^\n]*\([\n][^\n]\+\)\+' Documentation/dvb/avermedia.txt
1229     blob 'To[ ]extract[ ]the[ ]firmware[^\n]*Opera[ ]DVB-S1[ ]USB-Box.*[/]lib[/]firmware[/][ ]\.' Documentation/dvb/opera-firmware.txt
1230     blobname '\(dvb-usb-opera[^\n]*\.fw\|2830S[^\n]*2\.sys\)' Documentation/dvb/opera-firmware.txt
1231     blob 'Getting[ ]the[ ]Firmware\([\n][^\n]\+\)*' Documentation/dvb/ttusb-dec.txt
1232
1233     blob '[/][*][\n     ]*File[ ]automatically[ ]generated[ ]by[ ]createinit\.py[ ]using[ ]data[\n      ]*extracted[ ]from[ ]AF05BDA\.sys.*[}][;]' drivers/media/dvb/dvb-usb/af9005-script.h
1234     blob '#include[ ]["]af9005-script\.h["]' drivers/media/dvb/dvb-usb/af9005-fe.c
1235     blobna '[\n][       ]scriptlen[ ]=[ ]sizeof[(]script[)][^;]*[;][\n][        ]for[^{]*scriptlen[^{]*[{][^}]*[^\n     }]' drivers/media/dvb/dvb-usb/af9005-fe.c
1236
1237     accept 'struct[ ]\(sp8870\|tda1004x\)_config[\n][{][^}]*[(][*]request_firmware[)][^}]*[\n][}][;]' 'drivers/media/dvb/frontends/\(sp8870\|tda1004x\)\.h'
1238     blob '[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*get_dvb_firmware[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\([\n]\(#define[ ]\(\([^\n        ]*_DEFAULT\|NONFREE\)_FIRMWARE\|["][^"]*["]\)[ ]\([^\n]\|[\\][\n]\)*\|[/][*][(]DEBLOBBED[)][*][/]\)\)*' 'drivers/media/dvb/frontends/\(nxt200x\|or51211\|sp887[0x]\|tda1004[8x]\)\.c'
1239     blobname 'dvb-fe-sp8870\.fw' drivers/media/dvb/frontends/sp8870.c
1240     blobname 'dvb-fe-tda1004[56]\.fw' drivers/media/dvb/frontends/tda1004x.c
1241
1242     # This bootcode is actually Free Software under GPLv2, but since it's
1243     # being distributed without source code, we're taking it out.
1244     blob 'static[ ]u8[ ]bootcode\[\][ ]=[ ][{][^}]*[}][;]' drivers/media/dvb/ttpci/av7110_hw.c
1245     blobname 'dvb-ttpci-01\.fw' drivers/media/dvb/ttpci/av7110.c
1246     defsnc 'static[ ]u8[ ]nexusca_stv0297_inittab\[\][ ]=' drivers/media/dvb/ttpci/av7110.c
1247
1248     defsnc 'static[ ]u8[ ]philips_su1278_tt_inittab\[\][ ]=' drivers/media/dvb/ttpci/budget-ci.c
1249     defsnc 'static[ ]u8[ ]dvbc_philips_tdm1316l_inittab\[\][ ]=' drivers/media/dvb/ttpci/budget-ci.c
1250
1251     blobname 'ttusb-budget[/]dspbootcode\.bin' drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c
1252
1253     blobname 'cpia2[/]stv0672_vp4\.bin' drivers/media/video/cpia2/cpia2_core.c
1254
1255     blobname 'dabusb[/]\(firmware\.fw\|bitstream\.bin\)' drivers/media/video/dabusb.c
1256
1257     blob 'static[ ]u32[ ]tigon2\?Fw\(Text\|Rodata\|Data\)\[[(]MAX_\(TEXT\|RODATA\|DATA\)_LEN[/]4[)][ ][+][ ]1\][ ]__devinitdata[ ]=[ ][{][^}]*[}][;]\([\n]static[ ]u32[ ]tigon2\?Fw\(Text\|Rodata\|Data\)\[[(]MAX_\(TEXT\|RODATA\|DATA\)_LEN[/]4[)][ ][+][ ]1\][ ]__devinitdata[ ]=[ ][{][^}]*[}][;]\)*' drivers/net/acenic_firwmare.h
1258     blob '#define[ ]tigon2\?Fw[^ ]*\(Addr\|Len\)[ ]0x[^\n]*\([\n]#define[ ]tigon2\?Fw[^ ]*\(Addr\|Len\)[ ]0x[^\n]*\)\+' drivers/net/acenic_firmware.h
1259     blob '\([/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*Do[ ]not[ ]try[ ]to[ ]clear[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/][\n][        ]\)\?ace_clear[^;]*[;][\n]\([^}]*[{][^}]*ace_copy[^}]*tigon2\?Fw[^}]*[}]\)*[\n]\+[      ]return[ ]0[;][\n][}]' drivers/net/acenic.c
1260     blob 'if[ ][(]\(ACE_IS_TIGON_I[(]ap[)]\|ap->version[ ]==[ ]2\)[)][\n][      ][      ]writel[(]tigon2\?FwStartAddr,[ ][&]regs->Pc[)][;]\([\n][       ]if[ ][(]\(ACE_IS_TIGON_I[(]ap[)]\|ap->version[ ]==[ ]2\)[)][\n][       ][      ]writel[(]tigon2\?FwStartAddr,[ ][&]regs->Pc[)][;]\)*' drivers/net/acenic.c
1261
1262     blob '#include[ ]["]starfire_firmware\.h["]' drivers/net/starfire.c
1263     blob '[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*Load[ ]Rx[/]Tx[ ]firmware[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\([\n][  ]for[ ][(][^)]*FIRMWARE_[RT]X_SIZE[^)]*[)][\n][ ][      ]writel[^;]*firmware_[rt]x[^;]*[;]\)\+' drivers/net/starfire.c
1264
1265     blob 'static[ ]\(u8\|const[ ]u32\|struct[ ]fw_info\)[ ]bnx2_\(\(COM\|CP\|[RT]XP\|TPAT\)_b0[69]Fw\(Text\|Data\|Rodata\)\|\(xi_\)\?rv2p_proc[12]\|\(com\|cp\|[rt]xp\|tpat\)_fw_0[69]\)\(\[[^]};]*\]\)*[ ]=[ ][{][^}]*[}][;]\([\n][\n]*static[ ]\(u8\|const[ ]u32\|struct[ ]fw_info\)[ ]bnx2_\(\(COM\|CP\|[RT]XP\|TPAT\)_b0[69]Fw\(Text\|Data\|Rodata\)\|\(xi_\)\?rv2p_proc[12]\|\(com\|cp\|[rt]xp\|tpat\)_fw_0[69]\)\(\[[^]};]*\]\)*[ ]=[ ][{][^}]*[}][;]\)*' 'drivers/net/bnx2_fw2\?.h'
1266     blob '#include[ ]["]bnx2_fw\.h["][\n][\n]*#include[ ]["]bnx2_fw2\.h["]' drivers/net/bnx2.c
1267     blob 'static[ ]void[\n]load_rv2p_fw[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]' drivers/net/bnx2.c
1268     blob 'static[ ]int[\n]bnx2_init_cpus[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]' drivers/net/bnx2.c
1269
1270     # init_data_e1h? might actually be just data, but it doesn't
1271     # really matter.
1272     blob 'static[ ]const[ ]u32[ ]\(init\?\|[tucx]sem_\(int_table\|pram\)\)_data_e1h\?\[\][ ]=[ ][{][^}]*[}][;]\([\n][\n]*static[ ]const[ ]u32[ ]\(init\?\|[tucx]sem_\(int_table\|pram\)\)_data_e1h\?\[\][ ]=[ ][{][^}]*[}][;]\)*' drivers/net/bnx2x_init_values.h
1273     blob 'static[ ]\(void[ ]\|const[ ]u32[ ][*]\)bnx2x_\(sel_blob\|init_wr_wb\|init_block\)[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]\([\n][\n]*static[ ]\(void[ ]\|const[ ]u32[ ][*]\)bnx2x_\(sel_blob\|init_wr_wb\|init_block\)[(][^{]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]\)*' 'drivers/net/bnx2x_init\(_ops\)\?\.h'
1274
1275     blobname 'sun[/]cassini\.bin' drivers/net/cassini.c
1276
1277     blobna 'static[ ]u16[ ]\(sr\|twinax\)_edc\[\][ ]=[ ][{][^;]*[}][;]' drivers/net/cxgb3/ael1002.c
1278     blobna 'for[ ][(][^\n]*ARRAY_SIZE[(]\(sr\|twinax\)_edc[)][^\n]*[)][\n][^;]*mdio_write[^;]*[;]' drivers/net/cxgb3/ael1002.c
1279     blobname '\(cxgb3[/]\)\?t3\(fw\|\(%c\|.\)_p\(rotocol_\)\?sram\)-\(%d\|[0-9]*\)\.\(%d\|[0-9]*\)\.\(%d\|[0-9]*\)\.bin' drivers/net/cxgb3/cxgb3_main.c
1280
1281     blob '\([/][*][*]\+[/][\n]*\)*\([/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*Micro[ ]code[^*]*\([*]\+[^/*][^*]*\)*[*]*8086:[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\([\n]*[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\)*\|#define[ ][ ]*D10\(1M\(_B\)\?\|1S\|2_E\)_\(CPUSAVER_\(TIMER\|BUNDLE\|MIN_SIZE\)_DWORD\|RCVBUNDLE_UCODE\)[      ][^\n]*\([\\][\n][^\n]*\)*\)\([\n]*[/][*][^*]*\([*]\+\([^/*]\|[/][\n]*[/][*]\+\)[^*]*\)*[*]*Micro[ ]code[^*]*\([*]\+[^/*][^*]*\)*[*]*8086:[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\([\n]*[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\)*\|[\n][\n]*#define[ ][ ]*D10\(1M\(_B\)\?\|1S\|2_E\)_\(CPUSAVER_\(TIMER\|BUNDLE\|MIN_SIZE\)_DWORD\|RCVBUNDLE_UCODE\)[        ]\(\\[\n]\|[^\n]\)*\)*' drivers/net/e100.c
1282     blobna '\([/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/][\n]*[     ][      ]\)\(ucode\[opts->\(timer\|bundle\|min_size\)_dword\][ ].=[ ][^;]*[;][\n][\n]*[ ][      ]\)*[^}]*UCODE_SIZE[^}]*cb_ucode[^}]*return[;][\n][     ][}]' drivers/net/e100.c
1283
1284     blob 'static[ ]unsigned[ ]char[ ]__devinitdata[ ]lanai4_\(code\|data\)\[[0-9]*\][ ]=[ ][{][^;]*[}][;]' drivers/net/myri_code.h
1285     blob '#include[ ]["]myri_code\.h["]' drivers/net/myri_sbus.c
1286     blobna '\([/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/][\n         ]*\)\?for[ ][(][^\n]*sizeof[(]lanai4_\(code\|data\)[^\n]*[)][\n][^\n]*sbus_writeb[^;]*lanai4_\(code\|data\)[^;]*lanai4_code_off[^;]*[;]\([\n    ]*\([/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/][\n  ]*\)\?for[ ][(][^\n]*sizeof[(]lanai4_\(code\|data\)[^\n]*[)][\n][^\n]*sbus_writeb[^;]*lanai4_\(code\|data\)[^;]*lanai4_\(code\|data\)_off[^;]*[;]\)*' drivers/net/myri_sbus.c
1287
1288     blob 'static[ ]u32[ ]s_firmLoad\[\][ ]=[ ][{][^;]*[}][;]' drivers/net/tehuti_fw.h
1289     blobna 'bdx_tx_push_desc_safe[^;]*s_firmLoad[^;]*[;]' drivers/net/tehuti.c
1290     blobna 'for[ ][(][^\n]*ARRAY_SIZE[(]s_firmLoad[)][^\n]*[)][\n        ]*s_firmLoad[^;]*=[^;]*s_firmLoad[^;]*[;]' drivers/net/tehuti.c
1291
1292     blob '[ ][*][ ]Firmware[ ]is:[\n][ ][*][    ]Derived[ ]from[ ]proprietary[^/]*notice[ ]is[ ]accompanying[ ]it\.[\n][ ][*][/]' drivers/net/tg3.c
1293     blobna 'Derived[ ]from[ ]proprietary[ ]unpublished[ ]source[ ]code' drivers/net/tg3.c
1294     blob '\(static[ ]const[ ]\)\?u32[ ]tg3\(Tso5\?\)\?Fw\(Text\|Rodata\|Data\)\[[^{]*\][ ]=[ ][{][^}]*[}][;]\([\n][\n]*\(static[ ]const[ ]u32[ ]tg3\(Tso5\?\)\?Fw\(Text\|Rodata\|Data\)\[[^{]*\][ ]=[ ][{][^}]*[}][;]\|#if[ ]0\([ ][/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\)\?[\n]\(static[ ]const[ ]\)\?u32[ ]tg3\(Tso5\?\)\?Fw\(Text\|Rodata\|Data\)\[[^{]*\][ ]=[ ][{][^}]*[}][;][\n]#endif\)\)*' drivers/net/tg3.c
1295
1296     blob 'static[ ]const[ ]u8[ ]typhoon_firmware_image\[\][ ]=[ ][{][^}]*[}][;]' drivers/net/typhoon-firmware.h
1297
1298     blobna 'licensed[^\n]*strictly[ ]for[ ]use[^\n]*[\n]*[^\n]*COPS[ ]LocalTalk' 'drivers/net/appletalk/cops_\(ff\|lt\)drv\.h'
1299     blob 'static[ ]const[ ]unsigned[ ]char[ ]ffdrv_code\[\][ ]=[ ][{][^}]*[}][;]' drivers/net/appletalk/cops_ffdrv.h
1300     blob 'static[ ]const[ ]unsgined[ ]char[ ]ltdrv_code\[\][ ]=[ ][{][^}]*[}][;]' drivers/net/appletalk/cops_ltdrv.h
1301     blob '#include[ ]["]cops_\(lt\|ff\)drv\.h["][       ]*\([/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*Firmware[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\)\?\([\n][\n]*#include[ ]["]cops_\(lt\|ff\)drv\.h["][  ]*\([/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*Firmware[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\)\?\)*' drivers/net/appletalk/cops.c
1302
1303     blob 'static[ ]unsigned[ ]char[ ]bits_1200\[\][ ]*=[ ][{][^}]*[}][;]' drivers/net/hamradio/yam1200.h
1304     blob 'static[ ]unsigned[ ]char[ ]bits_9600\[\][ ]*=[ ][{][^}]*[}][;]' drivers/net/hamradio/yam9600.h
1305     blob '#include[ ]["]yam\(96\|12\)00\.h["]\([\n][\n]*#include[ ]["]yam\(96\|12\)00\.h["]\)*' drivers/net/hamradio/yam.c
1306
1307     blobna 'static[ ]const[ ]u_char[ ]__Xilinx7OD\[\][ ]=[ ][{][^}]*[}][;]' drivers/net/pcmcia/ositech.h
1308     blob '#include[ ]["]ositech\.h["]' drivers/net/pcmcia/smc91c92_cs.c
1309     blobna '\([/][*][ ]Download[ ]the[ ]Seven[ ]of[ ]Diamonds[ ]firmware[^/]*[*][/][\n   ]*\)\?for[ ]*[(][^\n]*__Xilinx7OD[^{}]*[{][\n][         ]*outb[ ]*[(]__Xilinx7OD[^}]*[}]' drivers/net/pcmcia/smc91c92_cs.c
1310
1311     blob 'static[ ]const[ ]u8[ ]microcode\[\][ ]=[ ][{][^}]*[}][ ]*[;]' drivers/net/tokenring/3c359_microcode.h
1312     blob '#include[ ]["]3c359_microcode\.h["]' drivers/net/tokenring/3c359.c
1313     blobna 'start[ ]=[ ][(]0xFFFF[ ]-[ ][(]mc_size[)][^;]*[;][\n        ]*[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/][\n    ]*printk[(]KERN_INFO[ ]["]3C359:[ ]Uploading[ ]Microcode:[ ]["][)][;][\n        ]*for[ ][(][^{]*\(mc_size[^{]*[)][ ][{][^}]*writeb[(]microcode\[\|[)][ ][{][^}]*writeb[(]microcode\[mc_size\)[^}]*[}]\([\n][    ]*printk[^\n]*[;][\n    ]*for[ ][(][^{]*\(mc_size[^{]*[)][ ][{][^}]*writeb[(]microcode\[\|[)][ ][{][^}]*writeb[(]microcode\[mc_size\)[^}]*[}]\)*' drivers/net/tokenring/3c359.c
1314
1315     blobname 'tr_smctr\.bin' drivers/net/tokenring/smctr.c
1316
1317     blobname 'kaweth[/]\(new\|trigger\)_code\(_fix\)\?\.bin' drivers/net/usb/kaweth.c
1318
1319
1320     blobname '\(agere\|prism\)_\(sta\|ap\)_fw\.bin' 'drivers/net/wireless/\(orinico/\)\?\(orinoco\|fw\)\.c'
1321     blobname 'symbol_sp24t_\(prim\|sec\)_fw' 'drivers/net/wireless/\(\(orinico/\)\?orinoco\.c\|spectrum_cs\.c\)'
1322
1323     blob 'unsigned[ ]short[ ]sbus_risc_code01\[\][ ]__devinitdata[ ]=[ ][{][^}]*[}][;]' drivers/scsi/qlogicpti_asm.c
1324     blob '#include[ ]["]qlogicpti_asm\.c["]' drivers/scsi/qlogicpti.c
1325
1326     blob '\([/][*][ ]Microcode[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/][\n]*\)\?static[ ]\(u\(nsigned[ ]\)\?char\|unsigned[ ]short\|ADV_DCNT\)[ ]_\(asc_mcode\|adv_asc3\(550\|8C\(08\|16\)00\)\)_\(buf\[\][ ]=[ ][{][^}]*[}]\|size[ ]=[ ]sizeof[^;]*\|chksum[ ]=[ ]0x[^;]*\)[;]\([      ]*[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\)\?\([\n][\n]*\([/][*][ ]Microcode[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/][\n]*\)\?static[ ]\(u\(nsigned[ ]\)\?char\|unsigned[ ]short\|ADV_DCNT\)[ ]_\(asc_mcode\|adv_asc3\(550\|8C\(08\|16\)00\)\)_\(buf\[\][ ]=[ ][{][^}]*[}]\|size[ ]=[ ]sizeof[^;]*\|chksum[ ]=[ ]0x[^;]*\)[;]\([        ]*[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]\)\?\)*' drivers/scsi/advansys.c
1327
1328     blob '\(#ifdef[ ]UNIQUE_FW_NAME[\n]\)\?static[ ]unsigned[ ]short[ ]\(risc\|fw12\(80e\|160\)i\)_code01\[\][ ]=[ ][{]\([\n]#else[\n]static[ ]unsigned[ ]short[ ]risc_code01\[\][ ]=[ ][{][\n]#endif[\n]\)\?[^}]*[}][;]\([\n][\n]*\(#ifdef[ ]UNIQUE_FW_NAME[\n]\)\?static[ ]unsigned[ ]short[ ]\(risc_code\|fw12\(80e\|160\)i\)_length01[ ]=[ ][^;]*[;]\([\n]#else[\n]static[ ]unsigned[ ]short[ ]risc_code_length01[ ]=[ ][^;]*[;][\n]#endif\)\?\)\?' 'drivers/scsi/ql1\(04\|2\(8\|16\)\)0_fw\.h'
1329
1330     blobname 'emi26[/]\(bitstream\|firmware\|loader\)\.fw' drivers/usb/misc/emi26.c
1331
1332     blobname 'emi62[/]\(bitstream\|midi\|spdif\|loader\)\.fw' drivers/usb/misc/emi62.c
1333
1334     blobname 'keyspan[/]\(mpr\|usa\(18x\|19\(q[iw]\|w\)\?\|28\(x\(a\|b\)\?\)\?\|49w\(lc\)\?\)\)\.fw' drivers/usb/serial/keyspan.c
1335
1336     accept '[   ][      ]fw_name[ ]=[ ]["]keyspan_pda[/]\(keyspan_pda\|xircom_pgs\)\.fw["][;]' drivers/usb/serial/keyspan_pda.c
1337     blobna 'fw_name[ ]=[ ][^\n]*\([\n]\+[^\n}][^\n]*\)*\([/][*]KEYSPAN_PDA[*][/]\)\?request_ihex_firmware' drivers/usb/serial/keyspan_pda.c
1338     accept '[   ]if[ ][(][/][*]KEYSPAN_PDA[*][/]request_ihex_firmware' drivers/usb/serial/keyspan_pda.c
1339
1340     blobname 'edgeport[/]\(boot\|down\)2\?\.fw' drivers/usb/serial/io_edgeport.c
1341     blobname 'edgeport[/]down3\.bin' drivers/usb/serial/io_ti.c
1342
1343     blobname 'ti_\(usb-\)\?\(%d\|3410\|5052\)\.\(fw\|bin\)' drivers/usb/serial/ti_usb_3410_5052.c
1344
1345     blobname 'whiteheat\(_loader\(_debug\)\?\)\?\.fw' drivers/usb/serial/whiteheat.c
1346
1347     blob 'static[ ]struct[ ]BA1struct[ ]BA1Struct[ ]=[ ][{][^;]*[}][;]' sound/pci/cs46xx/cs46xx_image.h
1348
1349     blob 'static[ ]u32[ ]cwc\(4630\|async\|snoop\)_\(code\|parameter\)\[\][ ]=[ ][{][^;]*[}][;]' 'sound/pci/cs46xx/imgs/cwc\(4630\|async\|snoop\)\.h'
1350     # cwcbinhack appears to have been created by hand.
1351     # cwcdma has sources (not verified) in cwcdma.asp.
1352     accept 'static[ ]u32[ ]cwc\(binhack\|dma\)_code\[\][ ]=[ ][{][^;]*[}][;]' 'sound/pci/cs46xx/imgs/cwc\(binhack\|dma\)\.h'
1353     blob '#include[ ]["]\(cs46xx_image\|imgs[/]cwc\(4630\|async\|snoop\)\)\.h["]\([\n][\n]*#include[ ]["]\(cs46xx_image\|imgs[/]cwc\(4630\|async\|snoop\)\)\.h["]\)*' sound/pci/cs46xx/cs46xx_lib.c
1354
1355     blobname 'korg[/]k1212\.dsp' sound/pci/korg1212/korg1212.c
1356
1357     blobname 'ess[/]maestro3_assp_\(kernel\|minisrc\)\.fw' sound/pci/maestro3.c
1358
1359     blobname 'yamaha[/]ds1e\?_\(ctrl\|dsp\)\.fw' sound/pci/ymfpci/ymfpci_main.c
1360
1361     blobname 'sb16[/]\(\(a\|mu\)law_main\|ima_adpcm_\(init\|capture\|playback\)\)\.csp' sound/isa/sb/sb16_dsp.c
1362
1363     blob 'static[ ]const[ ]struct[ ][{][^}]*[}][ ]yss225_registers\[\][ ]__devinitdata[ ]=[ ][{][^;]*[}][;]' sound/isa/wavefront/yss225.c
1364     blobname 'yamaha[/]yss225_registers\.bin' sound/isa/wavefront/wavefront_fx.c
1365     blobna 'firmware[ ]=[ ][&]yss225_registers_firmware[;]' sound/isa/wavefront/wavefront_fx.c
1366     blob 'static[ ]const[ ]struct[ ]firmware[ ]yss225_registers_firmware[ ]=[ ][{][^;]*[}][;]' sound/isa/wavefront/wavefront_fx.c
1367     blobna '\(ospath[    ]*-[ ]Pathname[^\n]*ICS2115[^-]*wavefront\.os\|Note:[ ]the[ ]firmware[ ]file[ ]["]wavefront\.os["]\)[^-]*[/]lib[/]firmware\.\([^.]*after[ ]upgrading[ ]the[ ]kernel\)\?' Documentation/sound/alsa/ALSA-Configuration.txt
1368     blobname 'wavefront\.os' sound/isa/wavefront/wavefront_synth.c
1369
1370     blobna 'and[\n]require[ ]the[ ]use[ ]of[^\n]*propr\?ietary[^:]*' Documentation/arm/IXP4xx
1371     blob 'If[ ]you[ ]need[ ]to[ ]use[ ]any[ ]of[ ]the[ ]above[^\n]*download[^:]*:[\n    ]*http:[^\n]*ixp4[^\n]*' Documentation/arm/IXP4xx
1372
1373     blobname 'xc\(%d\|[0-9]*\)\.bin' arch/arm/mach-netx/include/mach/xc.h
1374     accept 'int[ ]xc_request_firmware[(]struct[ ]xc[ ]*[*][ ]*x[)][;]' arch/arm/mach-netx/include/mach/xc.h
1375     accept 'int[ ]xc_request_firmware[(]struct[ ]xc[ ]*[*][ ]*x[)][\n][{]' arch/arm/mach-netx/xc.c
1376     accept '[   ][      ]dev_err[(]x->dev,[ ]["]request_firmware[ ]failed\\n["][)][;]' arch/arm/mach-netx/xc.c
1377     accept 'EXPORT_SYMBOL[(]xc_request_firmware[)][;]' arch/arm/mach-netx/xc.c
1378     accept '[   ][      ]if[ ][(]xc_request_firmware[(]priv->xc[)][)][ ][{]' drivers/net/netx-eth.c
1379
1380     blobname 'iop_fw_load_[sm]pu' arch/cris/arch-v32/drivers/iop_fw_load.c
1381     accept 'int[ ]iop_fw_load_[sm]pu[(]' arch/cris/arch-v32/drivers/iop_fw_load.c
1382     accept '[   ]retval[ ]=[ ]request_firmware[^;]*[&]iop_[sm]pu_device' arch/cris/arch-v32/drivers/iop_fw_load.c
1383     accept 'EXPORT_SYMBOL[(]iop_fw_load_[sm]pu[)][;]' arch/cris/arch-v32/drivers/iop_fw_load.c
1384
1385     accept '[/][*][ ]fake[ ]device[ ]for[ ]request_firmware[ ][*][/]' arch/x86/kernel/microcode_core.c
1386
1387     blobname 'amd-ucode[/]microcode_amd\.bin' arch/x86/kernel/microcode_amd.c
1388
1389     blobname 'intel-ucode[/]\([0-9a-f][0-9a-f]\|%02x\)-\([0-9a-f][0-9a-f]\|%02x\)-\([0-9a-f][0-9a-f]\|%02x\)' 'arch/x86/kernel/microcode\(_intel\)\?\.c'
1390
1391     blobname 'BCM2033-\(MD\.hex\|FW\.bin\)' drivers/bluetooth/bcm203x.c
1392
1393     blobname 'bfubase\.frm' drivers/bluetooth/bfusb.c
1394
1395     blobname 'BT3CPCC\.bin' drivers/bluetooth/bt3c_cs.c
1396
1397     blobname 'cyzfirm\.bin' drivers/char/cyclades.c
1398
1399     accept 'MODULE_FIRMWARE[(]["]dsp56k[/]bootstrap\.bin["][)][;]' drivers/char/dsp56k.c
1400     blobna 'const[ ]char[ ]fw_name\[\][ ]=[ ]["]dsp56k[/]bootstrap\.bin["][;][^\n]*\([\n]\+[^\n}][^\n]*\)*request_firmware[^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[  ]err[ ]=[ ]request_firmware[(][&]fw,[ ]fw_name,[ ]' drivers/char/dsp56k.c
1401     accept '[   ]const[ ]char[ ]fw_name\[\][ ]=[ ]["]dsp56k[/]bootstrap\.bin["][;][^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[  ]err[ ]=[ ]request_firmware[(][&]fw,[ ]fw_name,[ ]' drivers/char/dsp56k.c
1402
1403     blobname 'isi\(6\(08\|\(08\|16\)em\)\|46\(08\|16\)\)\.bin' drivers/char/isicom.c
1404
1405     blobname 'c\(218t\|p204\|320t\)unx\.cod' drivers/char/moxa.c
1406     accept '[   ][      ]printk[(]KERN_ERR[ ]["]MOXA:[ ]request_firmware[ ]failed' drivers/char/moxa.c
1407
1408     # This driver enables the user to update the non-Free BIOS, but it
1409     # only issues a firmware request if specifically told to.  It
1410     # doesn't require any non-Free firwmare to function, and it
1411     # doesn't actually recommend users to perform updates, so I'm
1412     # leaving it in.
1413     accept '[   ][      ][      ]req_firm_rc[ ]=[ ]request_firmware_nowait[(][^;]*,[ ]["]dell_rbu["],' drivers/firmware/dell_rbu.c
1414     accept '[   ]*["]dell_rbu:%s[ ]request_firmware_nowait["]' drivers/firmware/dell_rbu.c
1415
1416     blobname 'xc3028-v27\.fw' drivers/media/common/tuners/tuner-xc2028.h
1417     blobname 'xc3028L-v36\.fw' drivers/media/common/tuners/tuner-xc2028.h
1418
1419     blobname 'dvb-fe-xc5000-1\.1\.fw' drivers/media/common/tuners/xc5000.c
1420
1421     blobname '4210\(100[12]\|%4X\)\.sb' drivers/net/irda/irda-usb.c
1422     blobna '[/][*][     \n*]*[ ]Known[ ]firmware[^*]*\([*]\+[^/*][^*]*\)*[*]*\(STIR421x\|4210\(100[12]\|%4X\)\.sb\)[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/net/irda/irda-usb.c
1423
1424     blobname 'myri10ge_\(rss_\)\?ethp\?_z8e\.dat' drivers/net/myri10ge.c
1425     blobna 'If[ ]the[ ]driver[ ]can[ ]neither[ ]enable[ ]ECRC[^*]*\([*]\+[^/*][^*]*\)*[*]*myri10ge_\(rss_\)\?ethp\?_z8e\.dat[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/net/myri10ge.c
1426
1427     blobname 'spider_fw\.bin' drivers/net/spider_net.h
1428
1429     blobname 'tms380tr\.bin' drivers/net/tokenring/tms380tr.c
1430
1431     blobname 'atmel_at76c50\(2\([de]\|_3com\)\?\|4a\?\(_2958\)\?\|6\)\(\.bin\)\?' drivers/net/wireless/atmel.c
1432     accept '[   ]*priv->firmware[ ]=[ ]\(NULL\|new_firmware\)[;]' drivers/net/wireless/atmel.c
1433
1434     blobname 'b43\(legacy\)\?\(%s\)\?[/]\(%s\|ucode\([2459]\|1[1345]\)\|pcm5\|[abn]0g[01]initvals\(5\|1[13]\)\)\.fw' 'drivers/net/wireless/b43\(legacy\)\?/main.c'
1435     blobna 'b43legacyerr[(][^;]*must[ ]go[ ]to[ ]http[^;]*b43#devicefirmware[^;]*[)][;]' drivers/net/wireless/b43legacy/main.c
1436
1437     blob '#define[ ]IPW2100_FW_\(\(\(MAJOR\|MINOR\)_VERSION\|\(MAJOR\|MINOR\)[(]x[)]\)\|VERSION\)\([^\n]*\\[\n]\)*[^\n]*\([\n][\n]*#define[ ]IPW2100_FW_\(\(\(MAJOR\|MINOR\)_VERSION\|\(MAJOR\|MINOR\)[(]x[)]\)\|VERSION\)\([^\n]*\\[\n]\)*[^\n]*\)*' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1438     blobname 'ipw2100-\(["]\([^"\n]\|[\\][\n]\)*["]\([^"]\|[\\]["]\)*\)\+' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1439     blobname '__stringify[(]IPW2100_FW_MINOR_VERSION[)]' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1440     accept '[ ]*Portions[ ]of[ ]ipw2100_\(do_\)\?mod_firmware_load[,    ]*\(ipw2100_\(do_\)\?mod_firmware_load[,        and\n]*\)*' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1441     accept '[   ]ipw2100_mod_firmware_load[(]fw[)][;]' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1442     accept 'static[ ]int[ ]ipw2100_mod_firmware_load[(]' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1443     blobna 'if[ ][(]IPW2100_FW_MAJOR[^{]*[{][^}]*[      ][}]' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1444     blobname '["]["][ ]x[ ]["]\.fw["]' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
1445
1446     accept '[/][*][ ]Call[ ]this[ ]function[ ]from[ ]process[ ]context[^*]*\([*]\+[^/*][^*]*\)*[*]*request_firmware' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2200.c'
1447     blobname 'ipw2200-\(i\?bss\|sniffer\)\.fw' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2200.c'
1448     accept '[   ][      ]IPW_ERROR[(]["]%s[ ]request_firmware[ ]failed' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2200.c'
1449
1450     blobname 'iwlwifi-\(3945\|4965\|[156]000\|6050\)["][ ]IWL\(3945\|4965\|[156]000\|6050\)_UCODE_API[ ]["]\.ucode' 'drivers/net/iwlwifi/iwl\(3945-base\|-\(3945\|4965\|[156]000\)\)\.[ch]'
1451     blobname 'iwlwifi-3945-' drivers/net/iwlwifi/iwl-3945.h
1452     blobname '#api[ ]["]\.ucode["]' 'drivers/net/iwlwifi/iwl-\(3945.h\|\(4965\|[156]000\)\.c\)'
1453     accept '#define\([ ]_\?IWL3945_MODULE_FIRMWARE[(]api[)]\)\+' drivers/net/iwlwifi/iwl-3945.h
1454     accept '[   ][ ][*][ ]request_firmware[(][)][ ]is[ ]synchronous' 'drivers/net/iwlwifi/iwl\(3945-base\|-agn\)\.c'
1455     blobname 'iwlwifi-4965-' drivers/net/iwlwifi/iwl-4965.c
1456     blobname 'iwlwifi-5\(00\|15\)0-' drivers/net/iwlwifi/iwl-5000.c
1457     blobname '%s%[du]%s["],[\n  ]*name_pre,[ ]\(priv->fw_\)\?index,[ ]["]\.ucode' 'drivers/net/iwlwifi/iwl\(3945-base\|-agn\).c'
1458
1459     blobname 'libertas_cs\(_helper\)\?\.fw' drivers/net/wireless/libertas/if_cs.c
1460     blobname 'sd\(8385\|868[68]\)\(_helper\)\?\.bin\(["],[\n][  ]*\.firmware[   ]=[ ]["]sd\(8385\|868[68]\)\.bin\)\?' 'drivers/\(net/wireless/libertas/if_sdio\.c\|bluetooth/btmrvl_sdio\.c\)'
1461     blobname 'sd\(8385\|868[68]\)\(_helper\)\?\.bin' 'drivers/\(net/wireless/libertas/if_sdio\.c\|bluetooth/btmrvl_sdio\.c\)'
1462     accept '[   ]*card->firmware[ ]=[ ]\(if_sdio\|lbs_fw\|fw_name\)' drivers/net/wireless/libertas/if_sdio.c
1463     blobname 'usb8388\(-5\.126\.0\.p5\)\?\.bin' drivers/net/wireless/libertas/if_usb.c
1464     blob '[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*usb8388\(-5\.126\.0\.p5\)\?\.bin[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/net/wireless/libertas/if_usb.c
1465     accept '[   ][      ]lbs_pr_err[(]["]request_firmware\([(][)]\)\?[ ]failed' 'drivers/net/wireless/if_\(spi\|usb\)\.c'
1466     blobna 'o\.[ ]Copy[ ]the[ ]firmware[ ]image[^\n]*usb8388\([^\n]\|[\n][      ]*[^    \n]\)*' drivers/net/wireless/libertas/README
1467     blobna '\[fw_name=usb8388[^]]*\]' drivers/net/wireless/libertas/README
1468
1469     blobname 'usb8388\.bin' drivers/base/Kconfig
1470     accept '[   ][ ][ ]So,[ ]for[ ]example,[ ]you[ ]might[ ]set[ ]CONFIG_EXTRA_FIRMWARE=["]whatever\.bin["]' drivers/base/Kconfig
1471     accept '[   ][ ][ ]kernel\.[ ]Then[ ]any[ ]request_firmware[(]\(["]whatever\.bin["]\)[)]' drivers/base/Kconfig
1472
1473     blobname 'lbtf_usb\.bin' drivers/net/wireless/libertas_tf/if_usb.c
1474
1475     blobname 'isl38\(86\|87\|90\)\(pci\|usb\(_bare\)\?\)\?' 'drivers/net/wireless/p54/p54\(pci\.c\|usb\.[ch]\)'
1476     blob '[/][*][ ]for[ ]isl3886[ ]register[ ]definitions[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/net/wireless/p54/p54usb.h
1477     blobna 'If[ ]you[ ]enable[ ]this\([^\n]\|[\n][      ]*[^    \n]\)*isl3890\([^\n]\|[\n][     ]*[^    \n]\)*' drivers/net/wireless/Kconfig
1478
1479     blobname 'isl38\(77\|86\|90\)' drivers/net/wireless/prism54/islpci_dev.c
1480
1481     blobname 'rt2[56]61s\?\.bin' drivers/net/wireless/rt2x00/rt61pci.h
1482     blobname 'rt73\.bin' drivers/net/wireless/rt2x00/rt73usb.h
1483
1484     blobname 'zd1201\(-ap\)\?\.fw' drivers/net/wireless/zd1201.c
1485
1486     blobname 'zd1211[/]zd1211b\?_\(u\([rb]\|phr\)\?\)\?' drivers/net/wireless/zd1211/zd_usb.c
1487
1488     # ??? gotta introduce some means to match false-positives
1489     # including post context containing blobs, so that the macro name
1490     # is not flagged or deblobbed, but the blob name is.
1491     # blobna 'PCMCIA_\([PM]FC_\)\?DEVICE_CIS_\(MANF_CARD\|PROD_ID[1-4]*\)'
1492     # accept '[ ]    PCMCIA_\([PM]FC_\)\?DEVICE_CIS_\(MANF_CARD\|PROD_ID[1-4]*\)[(][^)]*, ["][/][*][(]DEBLOBBED[)][*][/]["][)]'
1493     # accept '#define PCMCIA_\([PM]FC_\)\?DEVICE_CIS_\(MANF_CARD\|PROD_ID[1-4]*\)[(]' include/pcmcia/device_id.h
1494
1495     blobname '\(cis[/]\)\?3CCFEM556\.cis' drivers/net/pcmcia/3c574_cs.c
1496
1497     blobname '\(cis[/]\)\?3CXEM556\.cis' drivers/net/pcmcia/3c589_cs.c
1498
1499     blobname '\(cis[/]\)\?\(PCMLM28\|DP83903\|LA-PCM\|PE520\|NE2K\|PE-200\|tamarack\)\.cis' drivers/net/pcmcia/pcnet_cs.c
1500
1501     blobname '\(cis[/]\)\?\(PCMLM28\|DP83903\|3C\(CF\|X\)EM556\|SW_\([78]xx\|555\)_SER\|MT5634ZLX\|COMpad[24]\|RS-COM-2P\|GLOBETROTTER\)\.cis' drivers/serial/serial_cs.c
1502
1503     # This enables but does not encourage firmware updates.
1504     accept '[   ]err[ ]=[ ]request_firmware[(][&]asd_ha->bios_image,[\n         ]*filename_ptr,[\n      ]*[&]asd_ha->pcidev->dev[)][;]' drivers/scsi/aic94xx/aic94xx_init.c
1505     blobname 'aic94xx-seq\.fw' drivers/scsi/aic94xx/aic94xx_seq.h
1506
1507     # This enables but does not encourage firmware updates.
1508     accept '[   ]if[(]request_firmware[(]&fw_entry,[ ]fname,[ ]&ioa_cfg->pdev->dev[)][)]' drivers/scsi/ipr.c
1509
1510     accept '[   ]res[ ]=[ ]request_firmware[(]&fw,[ ]["]sas_addr["],[ ]&shost->shost_gendev[)][;]' drivers/scsi/libsas/sas_scsi_host.c
1511
1512     blobname 'ql\(2\([12345]00\|322\)\|8[12]00\)_fw\.bin' drivers/scsi/qla2xxx/qla_os.c
1513     blobna 'By[ ]default,[ ]firmware[ ]for[ ]the[ ]ISP[ ]parts\([^\n]\|[\n]*[   ]\)*ql2[12345]00_fw\.bin\([^\n]\|[\n]*[ ]\)*ftp:[/][/][^\n]*firmware[/]' drivers/scsi/qla2xxx/Kconfig
1514
1515     blobname 'icom_\(asc\|res_dce\|call_setup\)\.bin' drivers/serial/icom.c
1516
1517     blobname 'fsl_qe_ucode_uart_\(%u\|[0-9]*\)_\(%u\|[0-9]*\)\(%u\|[0-9]*\)\.bin' drivers/serial/ucc_uart.c
1518
1519     blobname 'atmel_at76c50\(3-\(i386[13]\|rfmd\(-acc\)\?\)\|5\(a\(mx\)\?\)\?-rfmd\(2958\)\?\)\.bin' 'drivers/\(\(staging\|net/wireless\)/at76_usb/at76_usb\.c\|at76c50x-usb\.c\)'
1520
1521     accept 'static[ ]struct[ ]go7007_usb_board[ ]board_\(matrix_\(ii\|reload\|revolution\)\|star_trek\|px_tv402u\|xmen\|lifeview_lr192\|endura\|adlink_mpg24\|sensoray_2250\)[ ]=[ ][{][\n]\([  ]\.flags[       ]*=[ ][^",]*,[\n]*\)*[  ]\.main_info[   ]*=[ ][{][\n][  ][      ]\.firmware[    ]*=[ ]' drivers/staging/go7007/go7007-usb.c
1522     accept 'static[ ]struct[ ]go7007_board_info[ ]board_voyager[ ]=[ ][{][\n][  ]\.firmware[     ]*=[ ]' drivers/staging/go7007/saa7134-go7007.c
1523     blobname 'go7007\(fw\|tv\)\.bin' 'drivers/staging/go7007/\(go7007-\(driver\|usb\)\|saa7134-go7007\)\.c'
1524
1525     blobname 'cxacru-\(%s\|fw\|bp\|cf\)\.bin' drivers/usb/atm/cxacru.c
1526
1527     blobname 'speedtch-\(%d\|[0-9]*\)\.bin\(\.\(%x\|\(0x\)\?[0-9a-fA-F]*\)\(\.\(%02x\|[0-9a-fA-F][0-9a-fA-F]\)\)\?\)\?' drivers/usb/atm/speedtch.c
1528
1529     blobname 'ueagle-atm[/]' drivers/usb/atm/ueagle-atm.c
1530     blobname '\(adi930\|eagle\(I*\|IV\)\)\.fw' drivers/usb/atm/ueagle-atm.c
1531     blobname 'DSP[49e][ip]\.bin' drivers/usb/atm/ueagle-atm.c
1532     blobname '930-fpga\.bin' drivers/usb/atm/ueagle-atm.c
1533     blobname 'CMV[x9ae][yip]\.bin\(\.v2\)\?' drivers/usb/atm/ueagle-atm.c
1534
1535     blobname 'isight\.fw' drivers/usb/misc/isight_firwmare.c
1536
1537     blobname '\(i1480-\(pre-phy\|usb\|phy\)\|ptc\)-0\.0\.bin' drivers/uwb/i1480/dfu/usb.c
1538
1539     accept '[   ]retval[ ]=[ ]request_firmware[(][&]fw_entry,[ ]["]metronome\.wbf["],[ ][&]dev->dev[)][;]' drivers/video/metronomefb.c
1540
1541     blobname '\(vx[/]\)\?\(bx_1_v\(xp\|p4\)\.b56\|x1_\(1_v\(x[2p]\|p4\)\|2_v22\)\.xlx\|bd56\(002\|3v2\|3s3\)\.boot\|l_1_v\(x[2p]\|p4\|22\)\.d56\)' sound/drivers/vx/vx_hwdep.c
1542
1543     blobname '\(ea[/]\)\?darla20_dsp\.fw' sound/pci/echoaudio/darla20.c
1544     blobname '\(ea[/]\)\?darla24_dsp\.fw' sound/pci/echoaudio/darla24.c
1545     blobname '\(ea[/]\)\?\(\(loader\|echo3g\)_dsp\|3g_asic\)\.fw' sound/pci/echoaudio/echo3g.c
1546     blobname '\(ea[/]\)\?gina20_dsp\.fw' sound/pci/echoaudio/gina20.c
1547     blobname '\(ea[/]\)\?\(\(loader\|gina24_3[06]1\)_dsp\|gina24_3[06]1_asic\)\.fw' sound/pci/echoaudio/gina24.c
1548     blobname '\(ea[/]\)\?\(loader\|indigo\)_dsp\.fw' sound/pci/echoaudio/indigo.c
1549     blobname '\(ea[/]\)\?\(loader\|indigo_dj\)_dsp\.fw' sound/pci/echoaudio/indigodj.c
1550     blobname '\(ea[/]\)\?\(loader\|indigo_io\)_dsp\.fw' sound/pci/echoaudio/indigoio.c
1551     blobname '\(ea[/]\)\?layla20_\(dsp\|asic\)\.fw' sound/pci/echoaudio/layla20.c
1552     blobname '\(ea[/]\)\?\(\(loader\|layla24\)_dsp\|layla24_\(1\|2[AS]\)_asic\)\.fw' sound/pci/echoaudio/layla24.c
1553     blobname '\(ea[/]\)\?\(loader\|mia\)_dsp\.fw' sound/pci/echoaudio/mia.c
1554     blobname '\(ea[/]\)\?\(\(loader\|mona_3[06]1\)_dsp\|mona_3[06]1\(_1\)\?_asic_\(48\|96\)\|mona_2_asic\)\.fw' sound/pci/echoaudio/gina24.mona
1555     blobname 'ea[/]%s' sound/pci/echoaudio/echoaudio.c
1556
1557     blobname 'emu[/]\(hana\|\(audio\|micro\)_dock\|emu\(0404\|1010\(b\|_notebook\)\)\)\.fw' sound/pci/emu10k1/emu10k1_main.c
1558
1559     blobname '\(mixart[/]\)\?miXart8\(AES\)\?\.\(xlx\|elf\)' sound/pci/mixart/mixart_hwdep.c
1560
1561     blobname '\(pcxhr[/]\)\?\(x[ic]_1_882\|[ebd]321_512\|xlxint\|\(xlxc\|dsp[ebd]\)\(882\|1\?222\|924\)\(e\|hr\)\?\)\(\.dat\|\.[ebd]56\)' sound/pci/pcxhr/pcxhr_hwdep.c
1562
1563     blobna 'You[ ]need[ ]to[ ]install[\n]*riptide\.hex[\n]\.[\n]' Documentation/sound/alsa/ALSA-Configuration.txt
1564     blobname 'riptide\.hex' sound/pci/riptide/riptide.c
1565     defsnc 'static[ ]union[ ]firmware_version[ ]firmware_versions\[\][ ]=' sound/pci/riptide/riptide.c
1566     blobna 'chip->firmware[ ]=[ ]firmware[;]' sound/pci/riptide/riptide.c
1567
1568     blobname '\(multi\|digi\)face_firmware\(_rev11\)\?\.bin' sound/pci/rme9652/hdsp.c
1569
1570     blobname 'aica_firmware\.bin' sound/sh/aica.c
1571
1572     accept '[ ][*][^*]*\([*]\+[^/*][^*]*\)*[*]*Caution:[ ]This[ ]API[^*]*\([*]\+[^/*][^*]*\)*[*]*request_firmware.' sound/sound_firmware.c
1573     accept 'static[ ]int[ ]do_mod_firmware_load[(]' sound/sound_firmware.c
1574     accept 'int[ ]mod_firmware_load[(]' sound/sound_firmware.c
1575     accept '[   ]r[ ]=[ ]do_mod_firmware_load[(]' sound/sound_firmware.c
1576     accept 'EXPORT_SYMBOL[(]mod_firmware_load[)][;]' sound/sound_firmware.c
1577     accept 'extern[ ]int[ ]mod_firmware_load[(]' sound/oss/sound_firmware.h
1578
1579     accept '[   ]INITCODESIZE[ ]=[ ]mod_firmware_load[(]INITCODEFILE,[ ][&]INITCODE[)][;]' sound/oss/msnd_pinnacle.c
1580     accept '[   ]PERMCODESIZE[ ]=[ ]mod_firmware_load[(]PERMCODEFILE,[ ][&]PERMCODE[)][;]' sound/oss/msnd_pinnacle.c
1581     blobname '\([/]etc[/]sound[/]\|turtlebeach[/]\)\?pndsp\(ini\|erm\)\.bin' '\(sound/oss/msnd_pinnacle.h\|Documentation/sound/alsa/ALSA-Configuration.txt\)'
1582     blobname '\([/]etc[/]sound[/]\|turtlebeach[/]\)\?msnd\(init\|perm\)\.bin' '\(sound/oss/msnd_classic.h\|Documentation/sound/alsa/ALSA-Configuration.txt\)'
1583     blobna '\(Important[ ]Notes[ ]-[ ]Read[ ]Before[ ]Using\|Obtaining[ ]and[ ]Creating[ ]Firmware[ ]Files\)[\n]#[ ][ ]~*\([^\n]\|[\n]#[ ]*\([\n]#[ ]*\([\n]#[ ]*For[ ]the[^\n]*[\n]#[ ]*~*[\n]\)\?\)\?[^\n ]\)*\.' Documentation/sound/oss/MultiSound
1584
1585     accept '[   ]len[ ]=[ ]mod_firmware_load[(]fn,[ ][&]data[)][;][\n][ ]if[ ][^{]*[ ][{][\n][  ][       ]*printk[(]KERN_ERR[ ]["]sscape:' sound/oss/sscape.c
1586     blobname '[/]sndscape[/]\(scope\.cod\|sndscape\.co\([?dx01234]\|%d\)\)' sound/oss/sscape.c
1587
1588     accept '[   ][      ]trix_boot_len[ ]=[ ]mod_firmware_load[(]' sound/oss/trix.c
1589     blobname '\([/]etc[/]sound[/]\)\?trxpro\.bin' sound/oss/trix.c
1590
1591     accept '[   ][      ]smw_ucodeLen[ ]=[ ]mod_firmware_load[(]' sound/oss/sb_common.c
1592     blobname '\([/]etc[/]sound[/]\)\?midi0001\.bin' sound/oss/sb_common.c
1593     blobname '\([/]etc[/]sound[/]\|turtlebeach[/]\)\?msnd\(init\|perm\)\.bin' sound/oss/Kconfig
1594
1595     blob 'When[ ]the[ ]module[ ]is[ ]loaded[^\n]*\([\n][^\n]*\)*[/]pss_synth[^\n]*\([\n][^\n]*\)*' Documentation/sound/oss/PSS
1596     blob 'pss_firmware[ \n      ]*This[ ]parameter[^\n]*\([\n][^\n]*\)*[/]pss_synth[^\n]*\([\n][^\n]\+\)*' Documentation/sound/oss/PSS-updates
1597     accept '[   ][      ]pss_synthLen[ ]=[ ]mod_firmware_load[(]pss_firmware,[ ][(]void[ ][*][)][ ][&]pss_synth[)][;]' sound/oss/pss.c
1598     accept '[   ]*if[ ]\?[(]\(!\|fw_load[ ][&][&][ ]\)\?pss_synth' sound/oss/pss.c
1599     accept '[   ]*if[ ][(]!pss_download_boot[(]devc,[ ]pss_synth,[ ]pss_synthLen,' sound/oss/pss.c
1600     accept '[   ]*vfree[(]pss_synth[)][;]' sound/oss/pss.c
1601     blobna 'to[ ]allow[ ]the[ ]user[ ][^/"]*fir[em]ware[ ]file[^/"]*["][^"*]*["]' sound/oss/pss.c
1602     blobname '\([/]etc[/]sound[/]\)\?pss_synth' sound/oss/pss.c
1603     accept '[   ][$][(]obj[)][/]bin2hex[ ]pss_synth' sound/oss/Makefile
1604     accept '[   ][ ]*echo[ ][\'"'"']static[ ]\(unsigned[ ]char[ ][*][ ]*\|int[ ]\)pss_synth\(Len\)\?[ ]=[ ]\(NULL\|0\)[;]' sound/oss/Makefile
1605
1606     accept '[   ]\.request_firmware[ ]=[ ]NULL,' drivers/media/dvb/dvb-usb/m920x.c
1607
1608     accept '[    ]*["]request_firmware[ ]\(fatal[ ]error\|unable[ ]to[ ]locate\|:[ ]Failed[ ]to[ ]find\)' drivers/media/video/pvrusb2/pvrusb2-hdw.c
1609     accept '[ ][*][ ]NOTE[ ]:[ ]the[ ]pointer[ ]to[ ]the[ ]firmware[ ]data[ ]given[ ]by[ ]request_firmware[(][)]' drivers/media/video/pvrusb2-hdw.c
1610
1611     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]\(dw\(210[24]\|3101\)\|s6[3x]0\)_properties[ ]=[ ][{][\n]\([  ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/dw2102.c
1612     blobname 'dvb-usb-\(dw\(210[124]\|3101\)\|s630\)\.fw' drivers/media/dvb/dvb-usb/dw2102.c
1613
1614     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]gp8psk_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/gp8psk.c
1615     blobname 'dvb-usb-gp8psk-0[12]\.fw' drivers/media/dvb/dvb-usb/gp8psk.c
1616
1617     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]opera1_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/nova-t-usb2.c
1618     blobname 'dvb-usb-opera-\(fpga-\)\?-01\.fw' drivers/media/dvb/dvb-usb/opera1.c
1619
1620     blobname 'dvb-fe-af9013\.fw' drivers/media/dvb/frontends/af9013_priv.h
1621
1622     blobname 'dvb-fe-bcm3510-01\.fw' drivers/media/dvb/frontends/bcm3510.c
1623
1624     blobname 'dvb-fe-cx24116\.fw' drivers/media/dvb/frontends/cx24116.c
1625
1626     blobname 'dvb-fe-nxt2002\.fw' drivers/media/dvb/frontends/nxt200x.c
1627
1628     blob '[/][*][\n][ ][*][ ]This[ ]driver[ ]needs[ ]two[ ]external[ ]firmware[ ]files[^*]*\([*]\+[^/*][^*]*\)*[*]*dvb-fe-or51132-\(vsb\|qam\)\.fw[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/media/dvb/frontends/or51132.c
1629     blobname 'dvb-fe-or51132-\(vsb\|qam\)\.fw' drivers/media/dvb/frontends/or51132.c
1630
1631     blobname 'dvb-fe-or51211\.fw' drivers/media/dvb/frontends/or51211.c
1632
1633     blobname 'dvb-fe-sp887x\.fw' drivers/media/dvb/frontends/sp887x.c
1634
1635     blobname 'dvb-fe-tda10048-1\.0\.fw' drivers/media/dvb/frontends/tda10048.c
1636
1637     blobname '\(\(dvb\|tdmb\|isdbt\)_nova\|cmmb_vega\)_12mhz\(_b0\)\?\.inp' drivers/media/dvb/siano/smscoreapi.c
1638
1639     blobname '\(dvb[th]\(_bda\)\?\|tdmb\)_stellar_usb\.inp' drivers/media/dvb/siano/smsusb.c
1640
1641     blobname 'dvb-ttusb-dec-\(2000t\|2540t\|3000s\)\.fw' drivers/media/dvb/ttusb-dec/ttusb_dec.c
1642
1643     blobname 'hcwamc\.rfb' drivers/media/video/bt8xx/bttv-cards.c
1644
1645     blobname 'v4l-cx23418-dig\.fw' drivers/media/video/cx18/cx18-av-firmware.c
1646     blobname 'v4l-cx23418-[ac]pu\.fw' drivers/media/video/cx18/cx18-firwmare.c
1647
1648     blobname 'v4l-cx23885-enc\.fw' drivers/media/video/cx23885/cx23885-417.c
1649
1650     blobname 'v4l-\(cx23\(885\|1xx\)-avcore-01\|cx25840\)\.fw' drivers/media/video/cx25840/cx25840-firmware.c
1651
1652     blobname 'v4l-cx2341x-\(enc\|dec\)\.fw' include/media/cr2341x.h
1653
1654     blobname 'v4l-cx2341x-init\.mpg' drivers/media/video/ivtv/ivtv-firwmare.c
1655
1656     blobname 'v4l-pvrusb2-\(2[49]\|73\)xxx-01\.fw' drivers/media/video/pvrusb2/pvrusb2-devattr.c
1657
1658     blobname 'f2255usb\.bin' drivers/media/video/s2255drv.c
1659
1660     blobname 'drx397xD\.\(A2\|B1\)\.fw' drivers/media/dvb/frontends/drx397xD_fw.h
1661
1662     accept '#define[ ]DIB0700_DEFAULT_DEVICE_PROPERTIES[ ]\\[\n]\([     ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^\n",]*,[ ]\\[\n]\)*[     ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/dib0700_devices.c
1663     blobname 'dvb-usb-dib0700-1\.[12]0\.fw' drivers/media/dvb/dvb-usb/dib0700_devices.c
1664
1665     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]nova_t_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/nova-t-usb2.c
1666     blobname 'dvb-usb-nova-t-usb2-02\.fw' drivers/media/dvb/dvb-usb/nova-t-usb2.c
1667
1668     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]umt_properties[ ]=[ ][{][\n]\([       ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/umt-010.c
1669     blobname 'dvb-usb-umt-010-02\.fw' drivers/media/dvb/dvb-usb/umt-010.c
1670
1671     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]ttusb2_properties\(_s2400\)\?[ ]=[ ][{][\n]\([        ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/ttusb2.c
1672     blobname 'dvb-usb-\(pctv-400e\|tt-s2400\)-01\.fw' drivers/media/dvb/dvb-usb/ttusb2.c
1673
1674     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]cxusb_bluebird_\(lgh064f\|dee1601\|lgz201\|dtt7579\|nano2_needsfirmware\)_properties[ ]=[ ][{][\n]\([ ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/cxusb.c
1675     blobname 'dvb-usb-bluebird-0[12]\.fw' drivers/media/dvb/dvb-usb/cxusb.c
1676
1677     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]\(dtt200u\|wt220u\(_\(fc\|zl0353\|miglia\)\)\?\)_properties[ ]=[ ][{][\n]\([  ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/dtt200u.c
1678     blobname 'dvb-usb-\(dtt200u-01\|wt220u-\(02\|fc03\|\(zl0353\|miglia\)-01\)\)\.fw' drivers/media/dvb/dvb-usb/dtt200u.c
1679
1680     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]vp7045_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/vp7045.c
1681     blobname 'dvb-usb-vp7045-01\.fw' drivers/media/dvb/dvb-usb/vp7045.c
1682
1683     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]\(dibusb\(1_1\(_an2235\)\?\|2_0b\)\|artec_t1_usb2\)_properties[ ]=[ ][{][\n]\([       ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/dibusb-mb.c
1684     blobname 'dvb-usb-\(dibusb-\(5\.0\.0\.11\|an2235-01\|6\.0\.0\.8\)\|adstech-usb2-02\)\.fw' drivers/media/dvb/dvb-usb/dibusb-mb.c
1685
1686     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]a800_properties[ ]=[ ][{][\n]\([      ]\.\(caps\|usb_ctrl\)[ ]=[ ][^",]*,[\n]*\)*[    ]\.firmware[ ]=[ ]' drivers/media/dvb/dvb-usb/a800.c
1687     blobname 'dvb-usb-avertv-a800-02\.fw' drivers/media/dvb/dvb-usb/a800.c
1688
1689     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]af9005_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]=[ ][^",]*,[\n]*\)*[    ]\.firmware[ ]=[ ]' drivers/media/dvb/dvb-usb/af9005.c
1690     blobname 'af9005\.fw' drivers/media/dvb/dvb-usb/af9005.c
1691
1692     accept '[   ][      ]\.download_firmware[ ]=[ ]af9015_download_firmware,[\n][       ][      ]\.firmware[ ]=[ ]' drivers/media/dvb/dvb-usb/af9015.c
1693     blobname 'dvb-usb-af9015\.fw' drivers/media/dvb/dvb-usb/af9015.c
1694
1695     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]dibusb_mc_properties[ ]=[ ][{][\n]\([ ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/dibusb-mc.c
1696     blobname 'dvb-usb-dibusb-6\.0\.0\.8\.fw' drivers/media/dvb/dvb-usb/dibusb-mc.c
1697
1698     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]\(megasky\|digivox_mini_ii\|tvwalkertwin\|dposh\)_properties[ ]=[ ][{][\n]\([ ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/m920x.c
1699     blobname 'dvb-usb-\(\(megasky\|digivox\)-02\|tvwalkert\|dposh-01\)\.fw' drivers/media/dvb/dvb-usb/m920x.c
1700
1701     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]vp702x_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/vp702x.c
1702     blobname 'dvb-usb-vp702x-02\.fw' drivers/media/dvb/dvb-usb/vp702x.c
1703
1704     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]digitv_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/digitv.c
1705     blobname 'dvb-usb-digitv-02\.fw' drivers/media/dvb/dvb-usb/digitv.c
1706
1707     blob 'Driver:[ ]\(acenic\|ADAPTEC_STARFIRE\|cxgb3\|e100\|tigon3\|korg1212\|maestro3\|ymfpci\|smctr\|kaweth\|ttusb-budget\|keyspan\|emi26\|emi62\|t[iu]_usb_3410_5052\|whiteheat\|ip2\|CPiA2\|DABUSB\|USB_VICAM\|USB_SERIAL_EDGEPORT\(_TI\)\?\|SND_SB16_CSP\|CASSINI\|ambassador\|SCSI_\(ADVANSYS\|QLOGIC\(_1280\|PTI\)\)\|TEHUTI\|TYPHOON\|YAM\|3C359\|PCMCIA_\(PCNET\|SMC91C92\|3C5\(89\|74\)\)\|MYRI_SBUS\|BNX2\|bnx2x\|wavefront\|SERIAL_8250_CS\|mga\|r128\|radeon\|ib_qib\)\([ ]--*\|:\)[ ]\([^\n]\|[\n]*[^\n\-]\)*\([\n][\n]--*[\n][\n]\?Driver:[ ]\(acenic\|ADAPTEC_STARFIRE\|cxgb3\|e100\|tigon3\|korg1212\|maestro3\|ymfpci\|smctr\|kaweth\|ttusb-budget\|keyspan\|emi26\|emi62\|t[iu]_usb_3410_5052\|whiteheat\|ip2\|CPiA2\|DABUSB\|USB_VICAM\|USB_SERIAL_EDGEPORT\(_TI\)\?\|SND_SB16_CSP\|CASSINI\|ambassador\|SCSI_\(ADVANSYS\|QLOGIC\(_1280\|PTI\)\)\|TEHUTI\|TYPHOON\|YAM\|3C359\|PCMCIA_\(PCNET\|SMC91C92\|3C5\(89\|74\)\)\|MYRI_SBUS\|BNX2\|bnx2x\|wavefront\|SERIAL_8250_CS\|mga\|r128\|radeon\|ib_qib\)\([ ]--*\|:\)[ ]\([^\n]\|[\n]*[^\n\-]\)*\)*' firmware/WHENCE
1708
1709     blobname 'sms1xxx-\(stellar\|nova-[ab]\|hcw-55xxx\)-dvbt-0[12]\.fw' drivers/media/dvb/siano/sms-cards.c
1710
1711     accept '[ ][ ][ ][ ]mv[ ]["][$]ofile["][ ]["][$]ofile\.elf["]' arch/powerpc/boot/wrapper
1712     accept '[ ][ ][ ][ ][$]objbin[/]mktree[ ]["][$]ofile\.elf["]' arch/powerpc/boot/wrapper
1713     accept '[   ]rm[ ]-f[ ]["][$]ofile\.elf["]' arch/powerpc/boot/wrapper
1714     accept '[ ][ ][ ][ ][$][{]CROSS[}]objcopy[ ]-O[ ]binary[ ]["][$]ofile["][ ]["][$]ofile\.bin["]' arch/powerpc/boot/wrapper
1715     accept '[ ][ ][ ][ ]dd[ ]if=["][$]ofile\.bin["][ ]of=["][$]ofile\.bin["]' arch/powerpc/boot/wrapper
1716     accept '[ ][ ][ ][ ]odir=["][$][(]dirname[ ]["][$]ofile\.bin["][)]["]' arch/powerpc/boot/wrapper
1717     accept '[ ][ ][ ][ ]gzip[ ]--force[ ]-9[ ]--stdout[ ]["][$]ofile\.bin["][ ]>[ ]["][$]odir[/]otheros\.bld["]' arch/powerpc/boot/wrapper
1718     accept '[   ]\.incbin[      ]["]arch[/]x86[/]kernel[/]acpi[/]realmode[/]wakeup\.bin["]' arch/x86/kernel/acpi/wakeup_rm.S
1719     accept '[;]set[ ]executable[ ]["]2232\.bin["]' drivers/char/ser_a2232fw.ax
1720
1721     blobname 'di\(\(dn\|pr\)load\|diva\(pp\)\?\|hscx\|v110\|modem\|fax\|_etsi\|_\(1tr6\|belg\|franc\|atel\|ni\|5ess\|japan\|swed\)\|dspdld\)\.\(bin\|s[xyqm]\|p\)' drivers/isdn/hardware/eicon/cardtype.h
1722     blobname 'dsp\(dload\|dqsig\|dvmdm\|dvfax\)\.bin' drivers/isdn/hardware/eicon/dsp_defs.h
1723
1724     blobname 'vicam[/]firmware\.fw' drivers/media/video/usbvideo/vicam.c
1725
1726     accept '#include[ ]["]ixp2400_[rt]x\.ucode["]' drivers/net/ixp2000/ixpdev.c
1727
1728     # New in 2.6.29
1729     blobname 'acenic[/]tg[12]\.bin' drivers/net/acenic.c
1730     blobname 'adaptec[/]starfire_[rt]x\.bin' drivers/net/starfire.c
1731     blobname 'e100[/]d10\(1[ms]\|2e\)_ucode\.bin' drivers/net/e100.c
1732     blobname 'tigon[/]tg3\(_tso5\?\)\?\.bin' drivers/net/tg3.c
1733     blobname '\(ti_usb-v\(%04x\|[0-9a-f]*\)-p\(%04x\|[0-9a-f]*\)\|mts_\(cdma\|gsm\|edge\)\)\.\(bin\|fw\)' drivers/usb/serial/ti_usb_3410_5052.c
1734     blobname 'iw\?\(2400\|6050\)m\?-fw-\(sdio\|usb\)-\(\(["][ ]I2400M_FW_VERSION[ ]["]\|[0-9.]*\)\.sbcf\|[^". \n]*\)' 'drivers/net/wimax/i2400m/\(sdio\|usb\)\.c'
1735     blob '3\.[ ]Installing[ ]the[ ]firmware[^\n]*\([\n][\n]*[ ][ ][ ][^\n]*\)*[\n]*[$][^\n]*i2400m-fw[^\n]*\([\n][\n]*[ ][ ][ ][^\n]*\)*' Documentation/wimax/README.i2400m
1736     blob '6\.1\.[ ]Driver[ ]complains[^\n]*i2400m-fw[^\n]*\([\n][\n]*\([ ][ ][ ]\|i2400m_usb\)[^\n]*\)*' Documentation/wimax/README.i2400m
1737     accept '[   ][      ]ranges[ ]=[ ]<'"$blobpat*"'>[;]' 'arch/powerpc/boot/dts/\(mpc8572ds\|p2020ds\|katmai\)\.dts'
1738     accept '\(div_table_\(clz\|inv\|ix\)\|zero_l\):\([\n][      ]\.\(byte[      ]-\?[0-9]*\|long[       ]0x[0-9A-F]*\)\)*' arch/sh/lib/udivsi3_i4i.S
1739     defsnc 'const[ ]u32[ ]crypto_[fi][tl]_tab\[4\]\[256\][ ]=' crypto/aes_generic.c
1740     accept '[   ][ ][ ]every[ ]driver[ ]which[ ]uses[ ]request_firmware[(][)][ ]and[ ]ships[ ]its' drivers/base/Kconfig
1741     defsnc 'static[ ]const[ ]u32[ ]filter_table\[\][ ]=' drivers/gpu/drm/i915/intel_tv.c
1742     defsnc 'static[ ]u8[ ]af9015_ir_table_\(avermedia\(_ks\)\?\|digittrade\|trekstor\)\[\][ ]=' drivers/media/dvb/dvb-usb/af9015.h
1743     defsnc '[   ]static[ ]__u8[ ]lgdt3304_\(vsb8\|qam\(64\|256\)\)_data\[\][ ]=' drivers/media/dvb/frontends/lgdt3304.c
1744     defsnc 'static[ ]u8[ ]\(init\|c\)_table\[\]=' drivers/media/dvb/frontends/s921_core.c
1745     defsnc 'static[ ]\(const[ ]\)\?struct[ ]stb0899_tab[ ]stb0899_\(cn\|dvbs2\?rf\|quant\|est\)_tab\[\][ ]=' drivers/media/dvb/frontends/stb0899_drv.c
1746     defsnc 'static[ ]const[ ]struct[ ]stb6100_lkup[ ]lkup\[\][ ]=' drivers/media/dvb/frontends/stb6100.c
1747     initnc 'static[ ]const[ ]__u8[ ]ov\(534\|772x\)_reg_initdata\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
1748     defsc 'static[ ]const[ ]\(__\)\?u8[ ]\(mi\(0360\|13[12]0\)\|po\(1200\|3130\)\|hv7131r\|ov76[67]0\)_\(\(soc\)\?_\?[iI]nit\(Q\?V\|SX\)GA\(_\(JPG\|data\)\)\?\|rundata\)\[\]\[4\][ ]=' drivers/media/video/gspca/vc032x.c
1749     defsnc 'static[ ]\(const[ ]\)\?u\(32\|_int32_t\)[ ]ar928[05]\(Common\|Modes\(_\(fast_clock\|backoff_[12]3db_rxgain\|\(original\|high_power\)_[tr]x_\?gain\)\)\?\)_928\(0_2\|5\(_1_2\)\?\)\[\]\[[236]\][ ]=' 'drivers/net/wireless/ath9k/\(ar9002_\)\?initvals\.h'
1750     defsnc 'static[ ]u32[ ]channel_tbl\[15\]\[9\][ ]=' drivers/staging/agnx/rf.c
1751     defsnc 'static[ ]const[ ]u32[\n]gain_table\[\][ ]=' drivers/staging/agnx/rf.c
1752     accept '<[frs]:[0-9]*x[0-9]*>[\n][01 \n]*' 'drivers/staging/asus_oled/\(linux\(_fr\?\)\?\|tux\(_r2\?\)\?\|zig\).txt'
1753     defsnc 'static[ ]unsigned[ ]char[ ]\(aud\|vid\)_regs\[\][ ]=' drivers/staging/go7007/s2250-board.c
1754     defsnc 'static[ ]u16[ ]vid_regs_fp\[\][ ]=' drivers/staging/go7007/s2250-board.c
1755     blobname 's2250\(_loader\)\?\.fw' drivers/staging/go7007/s2250-loader.c
1756     blobna 'me_xilinx_download' 'drivers/staging/meilhaus/.*'
1757     accept 'int[ ]me_xilinx_download[(]' 'drivers/staging/meilhaus/mefirmware\.[ch]'
1758     blobname 'me46[01]0\(_bosch\)\?\.bin' drivers/staging/meilhaus/me4600_device.c
1759     accept '\([ ]if[ ][(]me4600_device->base\.info\.pci\.device_id[ ]==[ ]PCI_DEVICE_ID_MEILHAUS_ME4610[)][ ][{][       ][/][/]Jekyll[ ]<=>[ ]me4610\|#ifdef[ ]BOSCH\|#else[ ][/][/]~BOSCH\)[\n][       ][      ]err[ ]=[\n][   ][      ][ ][ ][ ][ ]me_xilinx_download[(]me4600_device' drivers/staging/meilhaus/me4600_device.c
1760     blobname 'me6000\.bin' drivers/staging/meilhaus/me6000_device.c
1761     accept '[   ][/][*][ ]Download[ ]the[ ]xilinx[ ]firmware[ ][*][/][\n][      ]err[ ]=[ ]me_xilinx_download[(]me6000_device' drivers/staging/meilhaus/me6000_device.c
1762     defsnc '[   ][}][ ]grtpkts\[\][ ]=' drivers/staging/mimio/mimio.c
1763     defsnc 'u16_t[ ]zgTkipSbox\(Lower\|Upper\)\[256\][ ]=' drivers/staging/otus/80211core/ctkip.c
1764     accept '[   ]*[/][*][ ]*0\([ ]*[123]\)*[ ]*[*][/][\n][      ]*[/][*][ ]0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9\([ ][0-9]\)*[ ][*][/]' drivers/staging/otus/80211core/ctxrx.c
1765     defsnc 'u32_t[ ]crc32_tab\[\][ ]=' drivers/staging/otus/80211core/cwep.c
1766     blob 'const[ ]u32_t[ ]zc\(DK\|P2\)\?Fw\(Buf\)\?Image\(SPI\)\?\(\[\][ ]*=[ ]*[{][^;]*[}]\|Size[ ]*=[ ]*[0-9]*\)[;]\([\n][\n]*const[ ]u32_t[ ]zc\(DK\|P2\)\?Fw\(Buf\)\?Image\(SPI\)\?\(\[\][ ]*=[ ]*[{][^;]*[}]\|Size[ ]*=[ ]*[0-9]*\)[;]\)*' 'drivers/staging/otus/hal/hp.*fwu.*\.c'
1767     blob 'extern[ ]const[ ]u32_t[ ]zc\(DK\|P2\)\?Fw\(Buf\)\?Image\(SPI\)\?\(\[\]\|Size\)[;]\([\n]extern[ ]const[ ]u32_t[ ]zc\(DK\|P2\)\?Fw\(Buf\)\?Image\(SPI\)\?\(\[\]\|Size\)[;]\)*' drivers/staging/otus/hal/hpmain.c
1768     defsnc '[ ][ ][ ][ ]u32_t[ ]eepromBoardData\[15\]\[6\][ ]=' drivers/staging/otus/hal/hpmain.c
1769     defsnc 'static[ ]const[ ]u32_t[ ]channel_frequency_11A\[\][ ]=' drivers/staging/otus/ioctl.c
1770     defsnc 'static[ ]const[ ]u32_t[ ]\(ar5416Modes\|otusBank\)\[\]\[[36]\][ ]=' drivers/staging/otus/hal/otus.ini
1771     defsnc '[ ][ ][ ][ ]static[ ]UINT32[ ]MD5Table\[64\][ ]=' 'drivers/staging/rt28[67]0/common/md5\.c'
1772     defsnc 'static[ ]uint32[ ][FR]Sb\[256\][ ]=' 'drivers/staging/rt28[67]0/common/\(md5\|cmm_aes\)\.c'
1773     defsnc '\(UCHAR\|u8\)[ ]RateSwitchTable\(11B\?G\?\(N[123]S\(ForABand\)\?\)\?\)\?\[\][ ]=' 'drivers/staging/rt28[67]0/common/mlme\.c'
1774     defsnc '\(UCHAR\|u8\)[      ]*ZeroSsid\[32\][ ]=' 'drivers/staging/rt28[67]0/common/mlme\.c'
1775     defsnc '\(RTMP_RF_REGS\|struct[ ]rt_rtmp_rf_regs\)[ ]RF2850RegTable\[\][ ]=' 'drivers/staging/rt28[67]0/common/\(mlme\.c\|cmm_asic\.c\)'
1776     defsnc '\(FREQUENCY_ITEM\|struct[ ]rt_frequency_item\)[ ]FreqItems3020\[\][ ]=' 'drivers/staging/rt28[67]0/common/\(mlme\.c\|cmm_asic\.c\)'
1777     blob '\(UCHAR\|u8\)[ ]FirmwareImage\(_\(2870\|30[79]0\)\)\?[ ]\[\][ ]=[ ][{][^;]*[}][ ][;]' 'drivers/staging/rt\(28[67]\|30[79]\)0/common/firmware\(_3070\)\?\.h'
1778     defsnc 'ULONG[ ][ ]*BIT32\[\][ ]=' 'drivers/staging/rt28[67]0/common/rtmp_init\.c'
1779     defsnc 'const[ ]unsigned[ ]short[ ]ccitt_16Table\[\][ ]=' 'drivers/staging/rt\(28[67]0\|3090\)/common/rtmp_init\.c'
1780     blobna '\(pFirmwareImage[ ]=\([ ]FirmwareImage\(_\(28[67]\|30[79]\)0\)\?\|[\n       ]*[(]\(PUCHAR\|u8[ ][*]\)[)][&][\n      ]*FirmwareImage\(_\(28\|30\)70\)\?\[FIRMWAREIMAGE\(V[12]\)\?_LENGTH\]\)\|File[lL]ength[ ]=[ ]\(sizeof[(]FirmwareImage[)]\|FIRMWAREIMAGE\(V[12]\|_MAX\)\?_LENGTH\)\)[;]\([\n      ]*\(pFirmwareImage[ ]=\([ ]FirmwareImage\(_\(28[67]\|30[79]\)0\)\?\|[\n        ]*[(]\(PUCHAR\|u8[ ][*]\)[)][&][\n      ]*FirmwareImage\(_\(28\|30\)70\)\?\[FIRMWAREIMAGE\(V[12]\)\?_LENGTH\]\)\|File[lL]ength[ ]=[ ]\(sizeof[(]FirmwareImage[)]\|FIRMWAREIMAGE\(V[12]\|_MAX\)\?_LENGTH\)\)[;]\)*' 'drivers/staging/rt\(28[67]0\|30[79]0\)/common/rtmp_init\.c'
1781     blobname 'rate\.bin' drivers/staging/rt2870/rtmp_init.c
1782     defsnc '\(U\(INT\|CHAR\)\|u\(32\|8\)\)[ ]\(Tkip_Sbox_\(Lower\|Upper\)\|SboxTable\)\[256\][ ]=' 'drivers/staging/rt\(28[67]0\|3070\)/common/\(rtmp\|cmm\)_tkip\.c'
1783     defsnc '\(UINT\|u32\)[ ]FCSTAB_32\[256\][ ]=' 'drivers/staging/rt\(28[67]0\|3070\)/common/\(rtmp\|cmm\)_wep\.c'
1784     accept '[ ]*#[ ]*define[ ]\(STA_PROFILE\|CARD_INFO\)_PATH[  ]*["][/]etc[/]Wireless[/]RT\(28[67]\|307\)0STA[/]RT\(28[67]\|307\)0STA\(Card\)\?\.dat["]' 'drivers/staging/rt\(28[67]0\|3070\)/rt_linux\.h'
1785     blobname '\([/]etc[/]Wireless[/]\)\?\(RT\(28[67]\|307\)0STA[/]\)\?\(RT\(28[67]\|307\)0STA\|rt28[67]0\)\.bin' 'drivers/staging/rt\(28[67]0\|3070\)/rt_linux\.h'
1786     blobname '\([/]etc[/]Wireless[/]\)\?\(RT28[67]0STA[/]\)\?e2p\.bin' 'drivers/staging/rt\(28[67]0\|3070\)/rt_ate\.[hc]'
1787     defsnc '\([ ][ ][ ][ ]\|[   ]\)u_int32_t[ ]ralinkrate\[256\][ ]=' 'drivers/staging/rt\(28[67]0\|3070\)/rt_linux\.c'
1788     defsnc 'unsigned[ ]char[ ]\(QUALITY\|STRENGTH\)_MAP\[\][ ]=' drivers/staging/rtl8187se/r8180_core.c
1789     defsnc 'u\(8\|16\|32\)[ ]rtl8225\(\(a\|bcd\?\)_rxgain\|agc\|tx_\(gain_cck\|power\)_ofdm\|tx_power_cck\(_ch14\)\?\)\[\]=' drivers/staging/rtl8187se/r8180_rtl8225.c
1790     defsnc '\(static[ ]const[ ]\)\?u\(8\|16\|32\)[ ]\(rtl8225\(z2\)\?_\(threshold\|gain_\(a\|bg\)\|chan\|rxgain\|agc\|tx_\(gain_cck\|power\)_ofdm\|tx_power_cck\(_ch14\)\?\)\|ZEBRA2_CCK_OFDM_GAIN_SETTING\)\[\][ ]\?=' drivers/staging/rtl8187se/r8180_rtl8225z2.c
1791     defsnc 'static[ ]short[ ]rtl8255_agc\[\]=' drivers/staging/rtl8187se/r8180_rtl8255.c
1792     defsnc '[ ]\?static[ ]u\(8\|32\)[ ]\(MAC_REG_TABLE\[\]\[2\]\|[ ]*ZEBRA_\(AGC\|RF_RX_GAIN_TABLE\)\[\]\|OFDM_CONFIG\[\]\)=' drivers/staging/rtl8187se/r8185b_init.c
1793     accept '[   ]-[ ]move[ ]firmware[ ]loading[ ]to[ ]request_firmware[(][)]' drivers/staging/slicoss/README
1794     blobname '\(\(oasis\|gb\)_rcv\|slic_\(oasis\|mojave\)\)\.bin' drivers/staging/slicoss/slicoss.c
1795
1796     blob 'static[ ]unsigned[ ]char[ ]xilinx_firm\(_4610\)\?\[\][ ]=[ ][{]'"$sepx$blobpat*$sepx"'[}][;]' 'drivers/staging/me4000/me4\(00\|61\)0_firmware\.h'
1797     blob 'static[ ]struct[ ]PHY_UCODE[ ]PhyUcode\[\][ ]=[^;]*[;]' drivers/staging/sxg/sxgphycode.h
1798     blob 'static[ ]unsigned[ ]char[ ]SaharaUCode\[2\]\[57972\][ ]=[^;]*[;]' drivers/staging/sxg/saharadbgdownload.h
1799     blob '#include[ ]["]\(sxgphycode\(-1\.2\)\?\|saharadbgdownload\)\.h["]\([\n][\n]*#include[ ]["]\(sxgphycode\(-1\.2\)\?\|saharadbgdownload\)\.h["]\)*' drivers/staging/sxg/sxg.c
1800     blob 'static[ ]u8[ ]\(Mojave\|Oasis\)UCode\[2\]\[65536\][ ]=[^;]*[;]' 'drivers/staging/slicoss/\(gb\|oasis\(dbg\)\?\)download\.h'
1801     blob 'static[ ]u8[ ]\(GB\|Oasis\)RcvUCode\[2560\][ ]=[^;]*[;]' 'drivers/staging/slicoss/\(gb\|oasis\)rcvucode\.h'
1802     blob '#include[ ]["]\(gb\|oasis\)\(dbg\)\?\(download\|rcvucode\)\.h["]\([\n][\n]*#include[ ]["]\(gb\|oasis\)\(dbg\)\?\(download\|rcvucode\)\.h["]\)*' drivers/staging/slicoss/slicoss.c
1803     blobna 'instruction[ ]=[ ][^;]*\(Oasis\|GB\|Mojave\)\(Rcv\)\?UCode[^:}]*[;]' drivers/staging/slicoss/slicoss.c
1804     blobna 'seq_printf[(]seq[,][ ]["][^"]*%s[ ]%s[^"]*["][,][   \n]*\(GB_RCV\|MOJAVE_\)UCODE_VERS_STRING[,][ ]\(GB_RCV\|MOJAVE_\)UCODE_VERS_DATE[)][;]\([       \n]*seq_printf[(]seq[,][ ]["][^"]*%s[ ]%s[^"]*["][,][   \n]*\(GB_RCV\|MOJAVE_\)UCODE_VERS_STRING[,][ ]\(GB_RCV\|MOJAVE_\)UCODE_VERS_DATE[)][;]\)*' drivers/staging/slicoss/slicoss.c
1805     blobna 'numsects[ ]=[ ][OM]NumSections[;][\n][      ]*for[ ][(][^;]*[;][^;]*[;][^;{]*[)][ ][{][\n][^}]*[\n][        ][      ][}]' drivers/staging/slicoss/slicoss.c
1806
1807     # post 2.6.29 patches
1808     defsnc 'static[ ]int[ ]atom_dst_to_src\[8\]\[4\][ ]=' drivers/gpu/drm/radeon/atom.c
1809     defsnc 'const[ ]unsigned[ ]char[ ]map_table\[\][ ]=' drivers/input/lirc/lirc_ttusbir.c
1810     defsnc '\(static[ ]\)\?\(const[ ]\)\?struct[ ]au8522_register_config[ ]lpfilter_coef\[\][ ]=' drivers/media/dvb/frontends/au8522_decoder.c
1811     defsnc 'static[ ]const[ ]u8[ ]jpeg_head\[\][ ]=' drivers/media/video/gspca/jpeg.h
1812     defsnc 'static[ ]const[ ]u8[ ]\(bridge\|sensor\)_init_ov\(7[27]2x\|965x\(_2\)\?\)\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
1813     defsnc '[   ]static[ ]const[ ]u8[ ]probe_tb\[\]\[4\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
1814     defsnc 'static[ ]const[ ]u8[ ]eeprom_data\[\]\[3\][ ]=' drivers/media/gspca/tv8532.c
1815     defsnc '\(static[ ]uint32_t\|[}]\)[ ]nv04_graph_ctx_regs[ ]\?\[\][ ]=' drivers/char/drm/nv04_graph.c
1816     defsnc 'static[ ]int[ ]nv10_graph_ctx_regs[ ]\?\[\][ ]=' drivers/char/drm/nv10_graph.c
1817
1818     # This looks suspicious, but it pretty much just sets stuff to zero.
1819     initnc 'static[ ]__u8[ ]mode8420\(pro\|con\)\[\][ ]=' drivers/media/video/cs8420.h
1820
1821     # quite suspicious
1822     # arch/parisc/kernel/perf_images.h
1823     initc 'static[ ]uint32_t[ ]onyx_images\[\]\[PCXU_IMAGE_SIZE[/]sizeof[(]uint32_t[)]\][ ]__read_mostly[ ]='
1824     initc 'static[ ]uint32_t[ ]cuda_images\[\]\[PCXW_IMAGE_SIZE[/]sizeof[(]uint32_t[)]\][ ]__read_mostly[ ]='
1825
1826     # These are regarded as ok
1827     initnc 'static[ ]const[ ]u8[ ]SN9C102_\(Y\|UV\)_QTABLE[01]\[64\][ ]=[ ][{]'
1828     initnc '[   ]static[ ]\(const[ ]\)\?u8[ ]jpeg_header\[589\][ ]=[ ][{]' media/video/sn9c102/sn9c102_core.c
1829     accept '[   ][      ]\?err[ ]=[ ]sn9c102_write_const_regs[(]cam\(,[         \n]\+[{]0x[0-9a-fA-F][0-9a-fA-F],[ ]0x[0-9a-fA-F][0-9a-fA-F][}]\)*[)][;]'
1830
1831     # too lax?
1832     defsnc 'static[ ]yyconst[ ]\(flex_int\(16\|32\)_t\|\(\(short[ ]\)\?int\)\)[ ]yy_[^[]*\[[][0-9]*\][ ]='
1833     defsnc 'static[ ]const[ ]\(yytype_u\?int\(8\|16\)\|\(unsigned[ ]\)\?\(short\([ ]int\)\?\|char\)\)[ ]yy[^[]*\[\][ ]='
1834     initnc '\([ ]\)\?static[ ]\(const[ ]\)\?\(unsigned[ ]\(short\|char\)\|struct[ ]SiS_[^ ]*\)[ ]SiS[^[]*\(\[[][ *0-9]*\]\)\+[ ]*='
1835
1836     initnc 'static[ ]const[ ]a3d_Hrtf_t[ ]A3dHrirZeros[ ]=[ ][{]'
1837     initnc 'static[ ]const[ ]a3d_Hrtf_t[ ]A3dHrirImpulse[ ]=[ ][{]'
1838     initnc 'static[ ]const[ ]a3d_Hrtf_t[ ]A3dHrirOnes[ ]=[ ][{]'
1839     initnc 'static[ ]const[ ]a3d_Hrtf_t[ ]A3dHrirSatTest[ ]=[ ][{]'
1840     initnc 'static[ ]const[ ]a3d_Hrtf_t[ ]A3dHrirDImpulse[ ]=[ ][{]'
1841     initnc 'static[ ]const[ ]a3d_ItdDline_t[ ]A3dItdDlineZeros[ ]=[ ][{]'
1842     initnc 'static[ ]auxxEqCoeffSet_t[ ]asEqCoefsNormal[ ]=[ ][{]'
1843     initnc 'static[ ]xtalk_dline_t[ ]const[ ]alXtalkDlineTest[ ]=[ ][{]'
1844     initnc 'static[ ]struct[ ]nand_ecclayout[ ]rtc_from4_nand_oobinfo[ ]=[ ][{]'
1845     initnc 'static[ ]const[ ]s16[ ]tempLUT\[\][ ]='
1846     initnc 'static[ ]const[ ]u8[ ]viaLUT\[\][ ]='
1847     initnc 'static[ ]struct[ ][{][ ]int[ ]xres,[ ]yres,[ ]left,[ ]right,[ ]upper,[ ]lower,[ ]hslen,[ ]vslen,[ ]vfreq[;][ ][}][ ]timmings\[\][ ]__initdata[ ]=[ ][{]'
1848     initnc 'static[ ]struct[ ]platinum_regvals[ ]platinum_reg_init_[0-9]*[ ]=[ ][{]'
1849     initnc '[}][ ]sisfb_ddc[sf]modes\[\][ ]__devinitdata[ ]='
1850     initnc 'static[ ]struct[ ]dvb_pll_desc[ ][^\n]*[ ]=[ ][{]'
1851     initnc 'static[ ]u32[ ]LABELPATCHES\[\][ ]__attribute[(][(]unused[)][)][ ]='
1852
1853     initnc 'static[ ]dbdev_tab_t[ ]dbdev_tab\[\][ ]='
1854     accept '\(EXP\|LOG\|ATAN\)TBL:'"$sepx$blobpat*"
1855     initnc 'static[ ]char[ ]fm_volume_table\[128\][ ]='
1856     initnc 'unsigned[ ]int[ ]snd_gf1_scale_table\[SNDRV_GF1_SCALE_TABLE_SIZE\][ ]='
1857     # remaining after original deblob_2_6_24, not fully checked
1858
1859     oprepline '#define[ ]OV51[18]_\(Y\|UV\)QUANTABLE[ ][{]'
1860     initnc '[   ][      ]static[ ]unsigned[ ]char[ ]const[ ]data_bit\[64\][ ]='
1861     initnc '[   ][      ]static[ ]const[ ]u8[ ]data_sbit\[32\][ ]='
1862     initnc '[   ]\.RightCoefs[ ]='
1863     initnc '[   ]#define[ ]WakeupSeq[ ][ ][ ][ ][{]'
1864     initnc '[   ]SetRate44100\[\][ ]='
1865     initnc '[   ]const[ ]short[ ]period\[32\][ ]='
1866     defsnc '[   ]\(const[ ]static\|static[ ]const\)[ ]int[ ]desc_idx_table\[\][ ]=' 'arch/arm/include/asm/hardware/iop3xx-adma.h|include/asm-arm/hardware/iop3xx-adma.h'
1867     initnc '[   ]int[ ]prop_bcomm_irq\[3[*]16\][ ]='
1868     initnc '[   ]static[ ]char[ ]logSlopeTable\[128\][ ]='
1869     initnc '[   ]static[ ]const[ ]int[ ]uc_\(dup\|word\)_table\[\]\[2\][ ]='
1870     initnc '[   ]static[ ]const[ ]struct[ ]mc7_timing_params[ ]mc7_timings\[\][ ]='
1871     initnc '[   ]static[ ]const[ ]u8[ ]biphase_tbl\[\][ ]='
1872     initnc '[   ]static[ ]const[ ]u8[ ]cs170\[7[ ][*][ ]8\][ ]='
1873     initnc '[   ]static[ ]const[ ]u8[ ]cs3[13]a\[8[ ][*][ ]4\][ ]='
1874     initnc '[   ]static[ ]const[ ]u8[ ]dramsr13\[12[ ][*][ ]5\][ ]='
1875     defsnc '[   ]static[ ]const[ ]u8[ ]log10\[\][ ]=' drivers/net/wireless/zd1211rw/zd_chip.c
1876     initnc '[   ]static[ ]const[ ]u8[ ]mpeg_hdr_data\[\][ ]='
1877     initnc '[   ]static[ ]const[ ]u8[ ]sdramtype\[13\]\[5\][ ]='
1878     initnc '[   ]static[ ]const[ ]u8[ ]t\[\][ ]='
1879     initnc '[   ]static[ ]const[ ]unsigned[ ]int[ ]avg_pkts\[NCCTRL_WIN\][ ]='
1880     initnc '[   ]static[ ]const[ ]unsigned[ ]short[ ]ac97_defaults\[\][ ]='
1881     initnc '[   ]static[ ]int[ ]exp_lut\[256\][ ]='
1882     initnc '[   ]static[ ]u16[ ]jpeg_tables\[\]\[70\][ ]='
1883     initnc '[   ]static[ ]u16[ ]tables\[\][ ]='
1884     initnc '[   ]static[ ]u32[ ]logMagTable\[128\][ ]='
1885     initnc '[   ]static[ ]u8[ ]init_bufs\[13\]\[5\][ ]='
1886     initnc '[   ]static[ ]u8[ ]sine[ ]\[\][ ]='
1887     initnc '[   ]static[ ]u_short[ ]geometry_table\[\]\[[45]\][ ]='
1888     initnc '[   ]static[ ]unsigned[ ]char[ ]CRCTable1\[\][ ]='
1889     initnc '[   ]static[ ]unsigned[ ]char[ ]CRCTable2\[\][ ]='
1890     initnc '[   ]static[ ]unsigned[ ]char[ ]default_colors\[\][ ]='
1891     initnc '[   ]static[ ]unsigned[ ]char[ ]iso_regs\[8\]\[4\][ ]='
1892     initnc '[   ]static[ ]unsigned[ ]char[ ]log_scale\[101\][ ]=' sound/oss/pss.c
1893     initnc '[   ]static[ ]unsigned[ ]char[ ]msg\[\][ ]='
1894     initnc '[   ]static[ ]unsigned[ ]char[ ]static_pad\[\][ ]='
1895     initnc '[   ]static[ ]unsigned[ ]char[ ]table_alaw2ulaw\[\][ ]='
1896     initnc '[   ]static[ ]unsigned[ ]char[ ]table_ulaw2alaw\[\][ ]='
1897     defsnc '[   ]u32[ ]reg_boundaries\[\][ ]=' drivers/net/bnx2.c
1898     initnc '[   ]u8[ ]b\[\][ ]='
1899     initnc '[   ]uint8_t[ ]tx\[\][ ]='
1900     initnc '[   ]unsigned[ ]char[ ]saa7111_regs\[\][ ]='
1901     initnc '[   ]unsigned[ ]char[ ]sas_pcd_m_pg\[\][ ]='
1902     initnc '[   ][}][ ]modedb\[5\][ ]='
1903     defsnc '[   ][}][ ]reg_tbl\[\][ ]=' drivers/net/bnx2.c
1904     initnc '[   ][}][ ]vals\[\][ ]='
1905     initnc '[   ][}][ ]vm_devices\[\][ ]='
1906     initnc '[ ][ ][ ][ ]static[ ]const[ ]code[ ]distfix\[32\][ ]='
1907     initnc '[ ][ ][ ][ ]static[ ]const[ ]code[ ]lenfix\[512\][ ]='
1908     initnc '[ ][ ]int[ ]poly\[\]='
1909     defsnc '[ ][ ]static[ ]const[ ]unsigned[ ]char[ ]asso_values\[\][ ]=' scripts/genksyms/keywords.c_shipped
1910     initnc '[ ][ ]static[ ]unsigned[ ]char[ ]asso_values\[\][ ]='
1911     initnc '[ ][ ][}][ ]cards_ds\[\][ ]='
1912     initnc '[ ][ ][ ][ ]static[ ]const[ ]int8[ ]countLeadingZerosHigh\[\][ ]='
1913     initnc '[ ][ ][ ][ ]static[ ]const[ ]unsigned[ ]short[ ]d\(base\|ext\)\[32\][ ]='
1914     initnc '#define[ ]OV511_QUANTABLESIZE[      ]64'
1915     initnc 'BYTE[ ]BtCard::SRAMTable_\(NTSC\|PAL\)\[\][ ]='
1916     initnc 'BYTE[ ]SRAMTable\[\]\[[ ]60[ ]\][ ]='
1917     accept 'irq_prio_\([hdl]\|l[cd]\):'"$sepx$blobpat*" 'arch/arm/inlcude/asm/hardware/entry-macro-iomd.S|include/asm-arm/hardware/entry-macro-iomd.S'
1918     initc '__u8[ ]_ascebc\[256\][ ]='
1919     initc '__u8[ ]_ebc_tolower\[256\][ ]='
1920     initc '__u8[ ]_ebc_toupper\[256\][ ]='
1921     initnc 'adapter_tag_info_t[ ]aic7[9x]xx_tag_info\[\][ ]='
1922     initnc 'char[ ]dmasound_alaw2dma8\[\][ ]='
1923     initnc 'char[ ]dmasound_ulaw2dma8\[\][ ]='
1924     initnc 'const[ ]struct[ ]aper_size_info_16[ ]agp3_generic_sizes\[AGP_GENERIC_SIZES_ENTRIES\][ ]='
1925     initnc 'const[ ]u16[ ]crc_itu_t_table\[256\][ ]='
1926     initnc 'const[ ]u8[ ]byte_rev_table\[256\][ ]='
1927     initnc 'const[ ]u8[ ]crc7_syndrome_table\[256\][ ]='
1928     initnc 'int[ ]snd_sf_vol_table\[128\][ ]='
1929     initnc 'static[     ]u_char[        ]irq_to_siubit\[\][ ]='
1930     initnc 'static[     ]u_char[        ]irq_to_siureg\[\][ ]='
1931     initnc 'static[ ]Byte_t[ ]RData\[RDATASIZE\][ ]='
1932     initnc 'static[ ]__const__[ ]__u16[ ]gx_coeff\[256\][ ]='
1933     initnc 'static[ ]__u8[ ]init7121ntsc\[\][ ]='
1934     initnc 'static[ ]__u8[ ]init7121pal\[\][ ]='
1935     initnc 'static[ ]byte[ ]capidtmf_leading_zeroes_table\[0x100\][ ]='
1936     defsnc 'static[ ]char[ ]channel_map_madi_[sdq]s\[HDSPM_MAX_CHANNELS\][ ]=' sound/pci/rme9652/hdspm.c
1937     initnc 'static[ ]char[ ]coefficients\[NM_TOTAL_COEFF_COUNT[ ][*][ ]4\][ ]='
1938     initnc 'static[ ]char[ ]ecc_syndrome_table\[\][ ]='
1939     initnc 'static[ ]char[ ]isdn_audio_alaw_to_ulaw\[\][ ]='
1940     initnc 'static[ ]char[ ]isdn_audio_ulaw_to_alaw\[\][ ]='
1941     initnc 'static[ ]char[ ]mix_cvt\[101\][ ]='
1942     initnc 'static[ ]char[ ]opl3_volume_table\[128\][ ]='
1943     initnc 'static[ ]const[ ]__u16[ ]crc10_table\[256\][ ]='
1944     initnc 'static[ ]const[ ]__u32[ ]crc_c\[256\][ ]='
1945     initnc 'static[ ]const[ ]fixp_t[ ]cos_table\[46\][ ]='
1946     initnc 'static[ ]const[ ]int[ ]init_seq\[\][ ]='
1947     initnc 'static[ ]const[ ]int[ ]mobile_vid_table\[32\][ ]='
1948     initnc 'static[ ]const[ ]s16[ ]snd_opl4_pitch_map\[0x600\][ ]='
1949     initnc 'static[ ]const[ ]s8[ ]budtab\[256\][ ]='
1950     initnc 'static[ ]const[ ]struct[ ]aper_size_info_8[ ]via_generic_sizes\[9\][ ]='
1951     initnc 'static[ ]const[ ]struct[ ]color[ ]clut_vga16\[16\][ ]='
1952     defsnc 'static[ ]const[ ]struct[ ]gain_entry[ ]gain_table\[2\]\[108\][ ]=' drivers/net/wireless/iwl-4965.c
1953     defsnc 'static[ ]const[ ]struct[ ]mV_pos[ ]__\(cpu\)\?initdata[ ]mobilevrm_mV\[32\][ ]=' arch/x86/kernel/cpu/cpufreq/longhaul.h
1954     defsnc 'static[ ]const[ ]struct[ ]mV_pos[ ]__\(cpu\)\?initdata[ ]vrm85_mV\[32\][ ]=' arch/x86/kernel/cpu/cpufreq/longhaul.h
1955     initnc 'static[ ]const[ ]struct[ ]menelaus_vtg_value[ ]vcore_values\[\][ ]='
1956     initnc 'static[ ]const[ ]struct[ ]opl4_region[ ]regions_[0-9a-frums]*\[\][ ]='
1957     initnc 'static[ ]const[ ]struct[ ]regval[ ]regval_table\[\][ ]='
1958     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_5222\[\][ ]='
1959     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_5225_2527\[\][ ]='
1960     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_5226\[\][ ]='
1961     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg\[\][ ]='
1962     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2522\[\][ ]='
1963     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2523\[\][ ]='
1964     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2524\[\][ ]='
1965     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2525\[\][ ]='
1966     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2525e\[\][ ]='
1967     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2528\[\][ ]='
1968     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_noseq\[\][ ]='
1969     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_seq\[\][ ]='
1970     defsnc 'static[ ]const[ ]u16[ ]Sbox\[256\][ ]=' # 'drivers/staging/rtl8192u/r819xU_firmware.c' and elsewhere
1971     initnc 'static[ ]const[ ]u16[ ]count_lut\[\][ ]=' drivers/misc/tsl2550.c
1972     # drivers/net/e1000e/phy.c
1973     initnc 'static[ ]const[ ]u16[ ]e1000_igp_2_cable_length_table\[\][ ]='
1974     initnc 'static[ ]const[ ]u16[ ]rtl8225bcd_rxgain\[\][ ]='
1975     initnc 'static[ ]const[ ]u16[ ]rtl8225z2_rxgain\[\][ ]='
1976     defsnc 'static[ ]const[ ]u16[ ]stufftab\[5[ ][*][ ]256\][ ]=' drivers/isdn/gigaset/isocdata.c
1977     initnc 'static[ ]const[ ]u16[ ]tkip_sbox\[256\][ ]='
1978     initnc 'static[ ]const[ ]u16[ ]wm8753_reg\[\][ ]='
1979     initnc 'static[ ]const[ ]u32[ ]SS[0-3]\[256\][ ]='
1980     initnc 'static[ ]const[ ]u32[ ]S[1-8]\[64\][ ]='
1981     initnc 'static[ ]const[ ]u32[ ]T[0-5]\[256\][ ]='
1982     initnc 'static[ ]const[ ]u32[ ]Tm\[24\]\[8\][ ]='
1983     initnc 'static[ ]const[ ]u32[ ]bass_table\[41\]\[5\][ ]='
1984     initnc 'static[ ]const[ ]u32[ ]bf_sbox\[256[ ][*][ ]4\][ ]='
1985     defsnc 'static[ ]const[ ]u32[ ]camellia_sp0222\[256\][ ]=' crypto/camellia.c
1986     defsnc 'static[ ]const[ ]u32[ ]camellia_sp1110\[256\][ ]=' crypto/camellia.c
1987     defsnc 'static[ ]const[ ]u32[ ]camellia_sp3033\[256\][ ]=' crypto/camellia.c
1988     defsnc 'static[ ]const[ ]u32[ ]camellia_sp4404\[256\][ ]=' crypto/camellia.c
1989     initnc 'static[ ]const[ ]u32[ ]crc32c_table\[256\][ ]='
1990     initnc 'static[ ]const[ ]u32[ ]db_table\[101\][ ]='
1991     initnc 'static[ ]const[ ]u32[ ]m8xx_size_to_gray\[M8XX_SIZES_NO\][ ]='
1992     initnc 'static[ ]const[ ]u32[ ]mds\[4\]\[256\][ ]='
1993     initnc 'static[ ]const[ ]u32[ ]pc2\[1024\][ ]='
1994     initnc 'static[ ]const[ ]u32[ ]s[1-7]\[256\][ ]='
1995     initnc 'static[ ]const[ ]u32[ ]sb8\[256\][ ]='
1996     initnc 'static[ ]const[ ]u32[ ]tfrc_calc_x_lookup\[TFRC_CALC_X_ARRSIZE\]\[2\][ ]='
1997     initnc 'static[ ]const[ ]u32[ ]treble_table\[41\]\[5\][ ]='
1998     initnc 'static[ ]const[ ]u64[ ][CT][0-7]\[256\][ ]='
1999     initnc 'static[ ]const[ ]u64[ ]sbox[1-4]\[256\][ ]='
2000     initnc 'static[ ]const[ ]u64[ ]sha512_K\[80\][ ]=' 'crypto/sha512\(_generic\)\?.c'
2001     initnc 'static[ ]const[ ]u8[ ]Tr\[4\]\[8\][ ]='
2002     initnc 'static[ ]const[ ]u8[ ]aes_sbox\[256\][ ]='
2003     initnc 'static[ ]const[ ]u8[ ]calc_sb_tbl\[512\][ ]='
2004     initnc 'static[ ]const[ ]u8[ ]exp_to_poly\[492\][ ]='
2005     initnc 'static[ ]const[ ]u8[ ]legal_ansi_char_array\[0x40\][ ]='
2006     initnc 'static[ ]const[ ]u8[ ]parity\[\][ ]='
2007     initnc 'static[ ]const[ ]u8[ ]pc1\[256\][ ]='
2008     initnc 'static[ ]const[ ]u8[ ]poly_to_exp\[255\][ ]='
2009     initnc 'static[ ]const[ ]u8[ ]q[01]\[256\][ ]='
2010     defsnc 'static[ ]const[ ]u8[ ]ratio_lut\[\][ ]=' drivers/misc/tsl2550.c
2011     initnc 'static[ ]const[ ]u8[ ]rs\[256\][ ]='
2012     initnc 'static[ ]const[ ]u8[ ]rtl8225_agc\[\][ ]='
2013     initnc 'static[ ]const[ ]u8[ ]rtl8225_tx_power_cck\[\][ ]='
2014     initnc 'static[ ]const[ ]u8[ ]rtl8225_tx_power_cck_ch14\[\][ ]='
2015     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_gain_cck_ofdm\[\][ ]='
2016     initnc 'static[ ]const[ ]u_char[ ]irq_to_siubit\[\][ ]='
2017     initnc 'static[ ]const[ ]u_char[ ]irq_to_siureg\[\][ ]='
2018     initnc 'static[ ]const[ ]uint8_t[ ]parity\[256\][ ]='
2019     initnc 'static[ ]const[ ]unsigned[ ]char[ ]\(UV\|Y\)_QUANTABLE\[64\][ ]='
2020     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]__\(cpu\)\?initdata[ ]mV_mobilevrm\[32\][ ]=' arch/x86/kernel/cpu/cpufreq/longhaul.h
2021     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]__\(cpu\)\?initdata[ ]mV_vrm85\[32\][ ]=' arch/x86/kernel/cpu/cpufreq/longhaul.h
2022     initnc 'static[ ]const[ ]unsigned[ ]char[ ]barco_p1\[2\]\[9\]\[7\]\[3\][ ]='
2023     initnc 'static[ ]const[ ]unsigned[ ]char[ ]bitcounts\[256\][ ]='
2024     initnc 'static[ ]const[ ]unsigned[ ]char[ ]blue\[256\][ ]='
2025     initnc 'static[ ]const[ ]unsigned[ ]char[ ]chktab[hl]\[256\][ ]='
2026     initnc 'static[ ]const[ ]unsigned[ ]char[ ]comet_miireg2offset\[32\][ ]='
2027     initnc 'static[ ]\(const[ ]\)\?unsigned[ ]char[ ]euc2sjisibm_g3upper_map\[\]\[2\][ ]='
2028     initnc 'static[ ]const[ ]unsigned[ ]char[ ]green\[256\][ ]='
2029     initnc 'static[ ]const[ ]unsigned[ ]char[ ]hash_table_ops\[64[*]4\][ ]='
2030     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]hid_keyboard\[256\][ ]=' drivers/hid/hid-input.c
2031     initnc 'static[ ]const[ ]unsigned[ ]char[ ]mts_direction\[256[/]8\][ ]='
2032     initnc 'static[ ]const[ ]unsigned[ ]char[ ]red\[256\][ ]='
2033     initnc 'static[ ]\(const[ ]\)\?unsigned[ ]char[ ]sjisibm2euc_map\[\]\[2\][ ]='
2034     initnc 'static[ ]const[ ]unsigned[ ]char[ ]vol_cvt_datt\[128\][ ]='
2035     initnc 'static[ ]const[ ]unsigned[ ]int[ ]MulIdx\[16\]\[16\][ ]='
2036     initnc 'static[ ]const[ ]unsigned[ ]int[ ]crctab32\[\][ ]='
2037     initnc 'static[ ]const[ ]unsigned[ ]short[ ]crc_flex_table\[\][ ]='
2038     initnc 'static[ ]const[ ]unsigned[ ]short[ ]logtable\[256\][ ]='
2039     initnc 'static[ ]const[ ]unsigned[ ]short[ ]wd7000_iobase\[\][ ]='
2040     initnc 'static[ ]const[ ]unsigned[ ]short[ ]x86_keycodes\[256\][ ]='
2041     initnc 'static[ ]const[ ]unsigned[ ]table\[\][ ]='
2042     initnc 'static[ ]int[ ]MV300_reg_8bit\[256\][ ]\?=' drivers/video/atafb.c
2043     initnc 'static[ ]int[ ]fifo_map\[\]\[MAX_TX_FIFOS\][ ]='
2044     initnc 'static[ ]int[ ]initial_lfsr\[\][ ]='
2045     initnc 'static[ ]int[ ]log_tbl\[129\][ ]='
2046     initnc 'static[ ]int[ ]miro_fmtuner\[\][ ][ ]=' drivers/media/video/bt8xx/bt-cards.c
2047     initnc 'static[ ]int[ ]miro_tunermap\[\][ ]=' drivers/media/video/bt8xx/bt-cards.c
2048     initnc 'static[ ]int[ ]register_size\[\][ ]='
2049     initnc 'static[ ]int[ ]reserve_list\[MAX_RES_ARGS\][ ]='
2050     initnc 'static[ ]int[ ]reverse6\[64\][ ]='
2051     initnc 'static[ ]short[ ]attack_time_tbl\[128\][ ]='
2052     defsnc 'static[ ]short[ ]beep_wform\[256\][ ]=' 'sound/ppc/beep.c|sound/oss/dmasound/dmasound_awacs.c|arch/ppc/8xx_io/cs4218_tdm.c'
2053     initnc 'static[ ]short[ ]decay_time_tbl\[128\][ ]='
2054     initnc 'static[ ]short[ ]isdn_audio_[ua]law_to_s16\[\][ ]='
2055     initnc 'static[ ]struct[ ]iwl\(3945\)\?_tx_power[ ]power_gain_table\[2\]\[IWL_MAX_GAIN_ENTRIES\][ ]='
2056     initnc 'static[ ]struct[ ]ovcamchip_regvals[ ]regvals_init_\(76be\|7[16]20\|7x10\)\[\][ ]='
2057     initnc 'static[ ]struct[ ]regval_list[ ]ov7670_default_regs\[\][ ]='
2058     initnc 'static[ ]struct[ ]s_c2[ ]SetRate48000\[\][ ]='
2059     initnc 'static[ ]struct[ ]tea6420_multiplex[ ]TEA6420_line\[MXB_AUDIOS[+]1\]\[2\][ ]='
2060     initnc 'static[ ]struct[ ]wm_info[ ]i810_wm_16_100\[\][ ]='
2061     initnc 'static[ ]struct[ ]wm_info[ ]i810_wm_16_133\[\][ ]='
2062     initnc 'static[ ]struct[ ]wm_info[ ]i810_wm_24_100\[\][ ]='
2063     initnc 'static[ ]struct[ ]wm_info[ ]i810_wm_24_133\[\][ ]='
2064     initnc 'static[ ]struct[ ]wm_info[ ]i810_wm_8_100\[\][ ]='
2065     initnc 'static[ ]struct[ ]wm_info[ ]i810_wm_8_133\[\][ ]='
2066     initnc 'static[ ]struct[ ][{][ ]struct[ ]fb_bitfield[ ]red,[ ]green,[ ]blue,[ ]transp[;][ ]int[ ]bits_per_pixel[;][ ][}][ ]colors\[\][ ]='
2067     initnc 'static[ ]u16[ ]asEqCoefsPipes\[64\][ ]='
2068     initnc 'static[ ]u16[ ]asEqCoefsZeros\[50\][ ]='
2069     initnc 'static[ ]u16[ ]asEqOutStateZeros\[48\][ ]='
2070     initnc 'static[ ]u16[ ]default_key_map[ ]\[256\][ ]='
2071     initnc 'static[ ]u16[ ]eq_levels\[64\][ ]='
2072     initnc 'static[ ]u32[ ][ ]crc32tab\[\][ ]__attribute__[ ][(][(]aligned[(]8[)][)][)][ ]='
2073     initnc 'static[ ]u32[ ]ac3_frames\[3\]\[32\][ ]='
2074     initnc 'static[ ]u32[ ]adwDecim8\[33\][ ]='
2075     initnc 'static[ ]u32[ ]h_prescale\[64\][ ]='
2076     initnc 'static[ ]u32[ ]v_gain\[64\][ ]='
2077     initnc 'static[ ]u8[ ]SRAM_Table\[\]\[60\][ ]='
2078     initnc 'static[ ]u8[ ]alps_tdee4_stv0297_inittab\[\][ ]='
2079     defsnc 'static[ ]u8[ ]bnx2_570[68]_stats_len_arr\[BNX2_NUM_STATS\][ ]=' drivers/net/bnx2.c
2080     initnc 'static[ ]u8[ ]flit_desc_map\[\][ ]='
2081     defsnc 'static[ ]u8[ ]init_tab[ ]\?\[\][ ]=' 'drivers/media/dvb/frontends/cx2270\(0\|2\)\.c'
2082     defsnc 'static[ ]u8[ ]mac_reader\[\][ ]=' drivers/net/wireless/atmel.c
2083     initnc 'static[ ]u8[ ]mt2131_config1\[\][ ]=' drivers/media/dvb/frontends/mt2131.c # <= 2.6.25
2084     initnc 'static[ ]u8[ ]mt2131_config1\[\][ ]=' drivers/media/common/tuners/mt2131.c # >= 2.6.26
2085     initnc 'static[ ]u8[ ]mt2266_init2\[\][ ]=' drivers/media/dvb/frontends/mt2266.c # <= 2.6.25
2086     initnc 'static[ ]u8[ ]mt2266_init2\[\][ ]=' drivers/media/common/tuners/mt2266.c # >= 2.6.26
2087     initnc 'static[ ]u8[ ]opera1_inittab\[\][ ]='
2088     initnc 'static[ ]u8[ ]saa7113_init_regs\[\][ ]='
2089     initnc 'static[ ]u8[ ]samsung_tbmu24112_inittab\[\][ ]='
2090     initnc 'static[ ]u8[ ]w1_crc8_table\[\][ ]='
2091     initnc 'static[ ]u_char[ ]const[ ]data_sizes_32\[32\][ ]='
2092     initnc 'static[ ]u_long[ ]ident_map\[32\][ ]='
2093     initnc 'static[ ]u_short[ ]alt_map\[NR_KEYS\][ ]='
2094     initnc 'static[ ]u_short[ ]altgr_map\[NR_KEYS\][ ]='
2095     initnc 'static[ ]u_short[ ]ctrl_alt_map\[NR_KEYS\][ ]='
2096     initnc 'static[ ]u_short[ ]ctrl_map\[NR_KEYS\][ ]*='
2097     initnc 'static[ ]u_short[ ]shift_ctrl_map\[NR_KEYS\][ ]='
2098     initnc 'static[ ]u_short[ ]shift_map\[NR_KEYS\][ ]*='
2099     initnc 'static[ ]uchar[ ]perm1\[56\][ ]='
2100     initnc 'static[ ]uchar[ ]perm2\[48\][ ]='
2101     initnc 'static[ ]uchar[ ]perm3\[64\][ ]='
2102     initnc 'static[ ]uchar[ ]perm4\[48\][ ]='
2103     initnc 'static[ ]uchar[ ]perm5\[32\][ ]='
2104     initnc 'static[ ]uchar[ ]perm6\[64\][ ]='
2105     initnc 'static[ ]uchar[ ]sbox\[8\]\[4\]\[16\][ ]='
2106     initnc 'static[ ]uint16_t[ ]crc_table\[256\][ ]='
2107     initnc 'static[ ]uint8_t[ ]lpfcAlpaArray\[\][ ]='
2108     initnc 'static[ ]\(const[ ]\)\?uint8_t[ ]seqprog\[\][ ]='
2109     initnc 'static[ ]unsigned[ ]char[ ]V110_OffMatrix_9600\[\][ ]='
2110     initnc 'static[ ]unsigned[ ]char[ ]V110_OnMatrix_9600\[\][ ]='
2111     initnc 'static[ ]unsigned[ ]char[ ]a2232_65EC02code\[\][ ]='
2112     initnc 'static[ ]unsigned[ ]char[ ]atkbd_set3_keycode\[512\][ ]='
2113     initnc 'static[ ]unsigned[ ]char[ ]atkbd_unxlate_table\[128\][ ]='
2114     initnc 'static[ ]unsigned[ ]char[ ]banner_table\[\][ ]=' arch/sh/boards/superh/microdev/led.c
2115     initnc 'static[ ]unsigned[ ]char[ ]bootlogo_bits\[\][ ]='
2116     initnc 'static[ ]unsigned[ ]char[ ]bus2core_8260\[\][ ]='
2117     initnc 'static[ ]unsigned[ ]char[ ]bus2core_8280\[\][ ]='
2118     initnc 'static[ ]unsigned[ ]char[ ]caseorder\[256\][ ]='
2119     initnc 'static[ ]unsigned[ ]char[ ]crystal_key\[\][ ]='
2120     initnc 'static[ ]unsigned[ ]char[ ]dsp_ulaw\[\][ ]='
2121     initnc 'static[ ]unsigned[ ]char[ ]expressiontab\[128\][ ]='
2122     initnc 'static[ ]unsigned[ ]char[ ]header2\[\][ ]='
2123     initnc 'static[ ]unsigned[ ]char[ ]hidp_keycode\[256\][ ]='
2124     initnc 'static[ ]unsigned[ ]char[ ]nkbd_keycode\[128\][ ]='
2125     initnc 'static[ ]unsigned[ ]char[ ]pan_volumes\[256\][ ]='
2126     initnc 'static[ ]unsigned[ ]char[ ]parm_block\[32\][ ]='
2127     initnc 'static[ ]unsigned[ ]char[ ]raw3270_ebcgraf\[64\][ ]='
2128     initnc 'static[ ]unsigned[ ]char[ ]rfcomm_crc_table\[256\][ ]='
2129     initnc 'static[ ]unsigned[ ]char[ ]rwa_unlock\[\][ ]__initdata[ ]='
2130     initnc 'static[ ]unsigned[ ]char[ ]seqprog\[\][ ]='
2131     initnc 'static[ ]unsigned[ ]char[ ]snd_opl4_volume_table\[128\][ ]='
2132     initnc 'static[ ]unsigned[ ]char[ ]splash_bits\[\][ ]='
2133     initnc 'static[ ]unsigned[ ]char[ ]sunkbd_keycode\[128\][ ]='
2134     initnc 'static[ ]unsigned[ ]char[ ]ufs_fragtable_8fpb\[\][ ]='
2135     initnc 'static[ ]unsigned[ ]char[ ]ufs_fragtable_other\[\][ ]='
2136     initnc 'static[ ]unsigned[ ]char[ ]ulaw_dsp\[\][ ]='
2137     initnc 'static[ ]unsigned[ ]char[ ]usb_kbd_keycode\[256\][ ]='
2138     defsnc 'static[ ]unsigned[ ]char[ ]vga_font\[cmapsz\][ ]\(BTDATA[ ]\)\?=' arch/sparc/kernel/btext.c
2139     initnc 'static[ ]unsigned[ ]char[ ]voltab[12]\[128\][ ]='
2140     initnc 'static[ ]unsigned[ ]char[ ]vpd89_data\[\][ ]='
2141     initnc 'static[ ]unsigned[ ]char[ ]xtkbd_keycode\[256\][ ]='
2142     initnc 'static[ ]unsigned[ ]int[ ]ac3_bitrates\[32\][ ]='
2143     initnc 'static[ ]unsigned[ ]int[ ]bass_volume_table\[\][ ]='
2144     initnc 'static[ ]unsigned[ ]int[ ]bitrates\[3\]\[16\][ ]='
2145     initnc 'static[ ]unsigned[ ]int[ ]isa_dma_port\[8\]\[7\][ ]='
2146     initnc 'static[ ]unsigned[ ]int[ ]master_volume_table\[\][ ]='
2147     initnc 'static[ ]unsigned[ ]int[ ]mixer_volume_table\[\][ ]='
2148     initnc 'static[ ]unsigned[ ]int[ ]pan_table\[63\][ ]='
2149     initnc 'static[ ]unsigned[ ]int[ ]snapper_bass_volume_table\[\][ ]='
2150     initnc 'static[ ]unsigned[ ]int[ ]snapper_treble_volume_table\[\][ ]='
2151     initnc 'static[ ]unsigned[ ]int[ ]treble_volume_table\[\][ ]='
2152     initnc 'static[ ]unsigned[ ]int[ ]valid_mem\[\][ ]='
2153     initnc 'static[ ]unsigned[ ]long[ ]arthur_to_linux_signals\[32\][ ]='
2154     initnc 'static[ ]unsigned[ ]long[ ]shmedia_opcode_table\[64\][ ]='
2155     initnc 'static[ ]unsigned[ ]nv\([34]\|10\)TableP\(FIFO\|GRAPH\|RAMIN\)\[\]\[2\][ ]='
2156     initnc 'static[ ]unsigned[ ]short[ ]fcstab\[256\][ ]='
2157     initnc 'static[ ]unsigned[ ]short[ ]init[1234]\[128\][ ][/][*]__devinitdata[*][/][ ]='
2158     initnc 'static[ ]unsigned[ ]short[ ]log_table\[LOG_TABLE_SIZE[*]2\][ ]='
2159     initnc 'static[ ]unsigned[ ]short[ ]rc_ioport\[\][ ]='
2160     initnc 'static[ ]unsigned[ ]short[ ]translations\[\]\[256\][ ]='
2161     initnc 'static[ ]unsigned[ ]short[ ]treble_parm\[12\]\[9\][ ]='
2162     initnc 'struct[ ]RGBColors[ ]TextCLUT\[256\][ ]='
2163     initnc 'struct[ ]VgaRegs[ ]GenVgaTextRegs\[NREGS[+]1\][ ]='
2164     defsnc 'struct[ ]battery_thresh[ ][ ]*\(spitz\|sharpsl\)_battery_levels_\(noac\|acin\)\[\][ ]=' arch/arm/mach-pxa/sharpsl_pm.c
2165     initnc 'struct[ ]fb_bitfield[ ]rgb_bitfields\[\]\[4\][ ]='
2166     initnc 'struct[ ]mode_registers[ ]std_modes\[\][ ]='
2167     initnc 'struct[ ]vmode_attr[ ]vmode_attrs\[VMODE_MAX\][ ]='
2168     initnc 'u16[ ]const[ ]crc16_table\[256\][ ]='
2169     initnc 'u16[ ]const[ ]crc_ccitt_table\[256\][ ]='
2170     initnc 'u16[ ]hfsplus_compose_table\[\][ ]='
2171     initnc 'u16[ ]hfsplus_decompose_table\[\][ ]='
2172     initnc 'u_char[ ]const[ ]data_sizes_16\[32\][ ]='
2173     initnc 'u_short[ ]alt_map\[NR_KEYS\][ ]='
2174     initnc 'u_short[ ]altgr_map\[NR_KEYS\][ ]='
2175     initnc 'u_short[ ]ctrl_alt_map\[NR_KEYS\][ ]='
2176     initnc 'u_short[ ]ctrl_map\[NR_KEYS\][ ]*='
2177     initnc 'u_short[ ]plain_map\[NR_KEYS\][ ]*='
2178     initnc 'u_short[ ]shift_ctrl_map\[NR_KEYS\][ ]='
2179     initnc 'u_short[ ]shift_map\[NR_KEYS\][ ]*='
2180     initnc '\(uint16_t\|u16\)[ ]e1000_igp_cable_length_table\[IGP01E1000_AGC_LENGTH_TABLE_SIZE\][ ]=' drivers/net/e1000/e1000_hw.c # u16 on 2.6.26
2181     initnc '\(uint16_t\|u16\)[ ]e1000_igp_2_cable_length_table\[IGP02E1000_AGC_LENGTH_TABLE_SIZE\][ ]=' drivers/net/e1000/e1000_hw.c # u16 on 2.6.26
2182     initnc '[}][ ]euc2sjisibm_jisx0212_map\[\][ ]='
2183     initnc '[}][ ]freq\[\][ ]='
2184     initnc '[}][ ]hps_h_coeff_tab[ ]\[\][ ]='
2185     initnc '[}][ ]hps_v_coeff_tab[ ]\[\][ ]='
2186     initnc '[}][ ]init_tab\[\][ ]='
2187     initnc '[}][ ]maven_gamma\[\][ ]='
2188     initnc '[}][ ]mem_table\[\][ ]='
2189     initnc '[}][ ]mxb_saa7740_init\[\][ ]='
2190     initnc '[}][ ]pll_table\[\][ ]=' drivers/video/geode/lxfb_ops.c
2191     initnc '[}][ ]qam256_snr_tab\[\][ ]='
2192     initnc '[}][ ]qam64_snr_tab\[\][ ]='
2193     initnc '[}][ ]sil_port\[\][ ]='
2194     initnc '[}][ ]vsb_snr_tab\[\][ ]='
2195
2196     # new in 2.6.30
2197     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]sync\[\][ ]=' Documentation/networking/timestamping/timestamping.c
2198     blob 'The[ ]driver[ ]requires[ ]firmware[ ]files[ ]["]turtlebeach\([^\n]*[^\n.][\n]\)*directory.' Documentation/sound/alsa/ALSA-Configuration.txt
2199     defsnc 'static[ ]int[ ]sdp3430_batt_table\[\][ ]=' arch/arm/mach-omap2/board-3430sdp.c
2200     defsnc 'const[ ]char[ ]_[zs]b_findmap\[\][ ]=' arch/s390/kernel/bitmap.c
2201     initnc '[   ][{][ ]CnINT2MSKR0,[ ]CnINT2MSKCR0[ ],[ ]32,' arch/sh/kernel/cpu/sh4a/setup-sh7786.c
2202     blobname 'solos-\(\(db-\)\?FPGA\|Firmware\)\.bin' drivers/atm/solos-pci.c
2203     defsnc 'static[ ]u16[ ]__initdata[ ]i2c_clk_div\[50\]\[2\][ ]=' drivers/i2c/busses/i2c-imx.c
2204     defsnc 'static[ ]const[ ]struct[ ]mpc_i2c_divider[ ]mpc_i2c_dividers_\(52xx\|8xxx\)\[\][ ]\(__devinitconst[ ]\)\?=' drivers/i2c/busses/i2c-mpc.c
2205     accept '[   ]const[ ]char[ ]\*fw_name[ ]=[ ]["]av7110[/]bootcode\.bin["][;]' drivers/media/dvb/ttpci/av7110_hw.c
2206     accept '[   ]ret[ ]=[ ]request_firmware[(][^;]*[)][;][\n][  ]if[ ][(]ret[)][ ][{][^}]*[}][\n][\n][  ]mwdebi[(]av7110,[ ]DEBISWAB,[ ]DPRAM_BASE' drivers/media/dvb/ttpci/av7110_fw.c
2207     accept 'MODULE_FIRMWARE[(]["]av7110[/]bootcode\.bin["][)][;]' drivers/media/dvb/ttpci/av7110_fw.c
2208     defsnc 'static[ ]const[ ]u8[ ]jpeg_head\[\][ ]=' drivers/media/video/gspca/jpeg.h
2209     defsnc 'static[ ]struct[ ]nand_ecclayout[ ]nand_oob_128[ ]=' drivers/mtd/nand/nand_base.c
2210     blobname 'bnx2[/]bnx2-\(mips\|rv2p\)-[-0-9a-z.]*\.fw' drivers/net/bnx2.c
2211     accept 'static[ ]void[\n]load_rv2p_fw[(][^{)]*const[ ]struct[ ]bnx2_mips_fw_file_entry' drivers/net/bnx2.c
2212     accept 'static[ ]int[\n]bnx2_init_cpus[(][^{]*[)][\n][{][\n][       ]const[ ]struct[ ]bnx2_mips_fw_file'
2213     blobname 'yam[/]\(12\|96\)00\.bin' drivers/net/hamradio/yam.c
2214     blobname 'myricom[/]lanai\.bin' drivers/net/myri_sbus.c
2215     blobname '3com[/]3C359\.bin' drivers/net/tokenring/3c359.c
2216     blobname '3com[/]typhoon\.bin' drivers/net/typhoon.c
2217     defsnc 'static[ ]struct[ ]ar9170_phy_init[ ]ar5416_phy_init\[\][ ]=' drivers/net/wireless/ar9170/phy.c
2218     defsnc 'static[ ]struct[ ]ar9170_rf_init[ ]ar9170_rf_init\[\][ ]=' drivers/net/wireless/ar9170/phy.c
2219     defsnc 'static[ ]const[ ]struct[ ]ar9170_phy_freq_entry[ ]ar9170_phy_freq_params\[\][ ]=' drivers/net/wireless/ar9170/phy.c
2220     accept 'static[ ]int[ ]ar9170_usb_request_firmware[(]' drivers/net/wireless/ar9170/usb.c
2221     accept '[   ]\(err[ ]=\|return\)[ ]request_firmware\(_nowait\)\?[(][^\n]*["]ar9170\(-[12]\)\?\.fw["],' drivers/net/wireless/ar9170/usb.c
2222     accept '[   ]err[ ]=[ ]ar9170_usb_request_firmware[(]' drivers/net/wireless/ar9170/usb.c
2223     accept 'MODULE_FIRMWARE[(]["]ar9170\(-[12]\)\?\.fw["][)][;]\([\n]MODULE_FIRMWARE[(]["]ar9170\(-[12]\)\?\.fw["][)][;]\)*' drivers/net/wireless/ar9170/usb.c
2224     blobname 'slicoss[/]\(oasis\|gb\)\(rcvucode\|download\)\.sys' drivers/staging/slicoss/slicoss.c
2225     blobname 'sxg[/]sahara\(dbg\)\?downloadB\.sys' drivers/staging/sxg/sxg.c
2226     blobname 'qlogic[/]isp1000\.bin' drivers/scsi/qlogicpti.c
2227     blobname 'advansys[/]\(3550\|38C\(08\|16\)00\|mcode\)\.bin' drivers/scsi/advansys.c
2228     blobname 'qlogic[/]\(1040\|1280\|12160\)\.bin' drivers/scsi/qla1280.c
2229     blobname 'yamaha[/]yss225_registers\.bin' sound/isa/wavefront/wavefront_fx.c
2230     defsnc 'static[ ]const[ ]struct[ ]ath5k_ini[ ]rf\([52]413\|2425\)_ini_common_end\[\][ ]=' drivers/net/wireless/ath5k/initvals.c
2231     defsnc 'static[ ]const[ ]struct[ ]ath5k_ini_rfbuffer[ ]rfb_\(511[12]a\?\|5413\|231[67]\|24\(1[37]\|25\)\)\[\][ ]=' drivers/net/wireless/ath5k/rfbuffer.h
2232     accept '#define\([ ]_\?IWL\(4965\|[156]000\|5150\|6050\)_MODULE_FIRMWARE[(]api[)]\)\+' 'drivers/net/iwlwifi/iwl-\([156]000\|4965\)\.c'
2233     blobname 'iwlwifi-1000-' drivers/net/iwlwifi/iwl-1000.c
2234     blobname 'iwlwifi-60[05]0-' drivers/net/iwlwifi/iwl-6000.c
2235     blobname 'libertas[/]gspi\(%d\|[0-9]\+\)\(_hlp\)\?\.bin' drivers/net/wireless/libertas/if_spi.c
2236     blobname 'mwl8k[/]\(helper\|fmimage\)_\(%u\|[0-9]\+\)\.fw' drivers/net/wireless/mwl8k.c
2237     blobname '3826\.arm' 'drivers/\(net/wireless/p54/p54spi\|staging/stlc45xx/stlc45xx\)\.c'
2238     defsnc 'static[ ]unsigned[ ]char[ ]p54spi_eeprom\[\][ ]=' drivers/net/wireless/p54/p54spi_eeprom.h
2239     blobname '\(comedi[/]\)\?jr3pci\.idm' drivers/staging/comedi/drivers/jr3_pci.c
2240     blobname 'usbdux\(fast\)\?_firmware\.\(hex\|bin\)' 'drivers/staging/comedi/drivers/usbdux\(fast\)\?\.c'
2241     blobname 'RT30xxEEPROM\.bin' drivers/staging/rt3070/common/eeprom.c
2242     defsnc 'static[ ]const[ ]u8[ ]default_cal_\(channels\|rssi\)\[\][ ]=' drivers/staging/stlc45xx/stlc45xx.c
2243     accept '[   ][      ]stlc45xx_error[(]["]request_firmware[(][)][ ]failed' drivers/staging/stlc45xx/stlc45xx.c
2244     blob 'static[ ]struct[ ]phy_ucode[  ]PhyUcode\[\][ ]=[^;]*[;]' drivers/staging/sxg/sxgphycode-1.2.h
2245     accept 'device[ ]drivers[ ]which[ ]predate[ ]the[ ]common[ ]use[ ]of[ ]request_firmware[(][)]' firmware/README.AddingFirmware
2246     accept 'As[ ]we[ ]update[ ]those[ ]drivers[ ]to[ ]use[ ]request_firmware[(][)]' firmware/README.AddingFirmware
2247     blob 'This[ ]directory[ ]is[ ]_NOT_[ ]for[ ]adding[ ]arbitrary[ ]new[ ]firmware[ ]images.*git[ ]pull[ ]request[ ]to:[\n][^\n]*infradead\.org>' firmware/README.AddingFirmware
2248     blobna 'linux-firmware\.git' firmware/README.AddingFirmware
2249     blobname '\(ea[/]\)\?\(loader\|indigo_djx\)_dsp\.fw' sound/pci/echoaudio/indigodjx.c
2250     blobname '\(ea[/]\)\?\(loader\|indigo_iox\)_dsp\.fw' sound/pci/echoaudio/indigoiox.c
2251     blobname 'cis[/]LA-PCM\.cis' drivers/net/pcmcia/pcnet_cs.c
2252     blobname 'ositech[/]Xilinx7OD\.bin' drivers/net/pcmcia/smc91c92_cs.c
2253     blobname 'tehuti[/]\(firmware\|bdx\)\.bin' drivers/net/tehuti.c
2254     accept '[   ]*["]b43-open%s[/]%s\.fw["]' drivers/net/wireless/b43/main.c
2255     blobname '\(nx\(romimg\|3fw\(ct\|mn\)\)\|phanfw\)\.bin' 'drivers/net/netxen/netxen_nic\(_\(hw\|init\)\.c\|\.h\)'
2256
2257     # New in 2.6.31
2258     accept '[ ][*][ ]page[ ]tables[ ]as[ ]follows:[\n][ ][*][\n][ ][*][ ][ ][ ]3[ ]3[ ]2[ ]2[ ]2[ ]2[ ]2[ ]2[ ]2[ ]2[ ]2[ ]2[ ]1[ ]1[ ]1[ ]1[ ]1[ ]1[ ]1[ ]1[ ]1[ ]1[\n][ ][*][ ][ ][ ]1[ ]0[ ]9[ ]8[ ]7[ ]6[ ]5[ ]4[ ]3[ ]2[ ]1[ ]0[ ]9[ ]8[ ]7[ ]6[ ]5[ ]4[ ]3[ ]2[ ]1[ ]0[ ]9[ ]8[ ]7[ ]6[ ]5[ ]4[ ]3[ ]2[ ]1[ ]0' arch/arm/include/asm/pgtable.h
2259     defsnc '\([ ]static[ ]const[ ]u8[ ]snum_init\[\][ ]=[ ][{]\|static[ ]void[ ]qe_snums_init[(]void[)]\)[\n][  ][      ]0x04,[ ]0x05,' arch/powerpc/sysdev/qe_lib/qe.c
2260     accept '[.]LgoS4:[\n][      ][.]word[       ][.]LmtoS4-\.LgoS4\([\n][       ]\.\(long\|word\|byte\)[        ][01]\(,0\)*\)*' arch/s390/kernel/sclp.S
2261     defsnc 'static[ ]int[ ]sh_clk_div6_divisors\[64\][ ]=' arch/sh/kernel/cpu/clock-cpg.c
2262     accept '[ ][*][ ]*1[ ]1\([ ]0\)*[ ]1\([ ]0\)*' arch/x86/lguest/boot.c
2263     defsnc 'struct[ ]scrubrate[ ]scrubrates\[\][ ]=' drivers/edac/amd64_edac.c
2264     defsnc 'static[ ]const[ ]unsigned[ ]r\([35]\|s6\)00_reg_safe_bm\[[0-9]*\][ ]=' 'drivers/gpu/drm/radeon/r\(300\|v515\|s600\)\.c'
2265     defsnc 'static[ ]struct[ ]keyboard_layout_map_t[ ]keyboard_layout_maps\[\][ ]=' drivers/media/dvb/siano/smsir.c
2266     blobname 'dvb-cx18-mpc718-mt352\.fw' drivers/media/video/cx18/cx18-dvb.c
2267     defsnc '[   ]const[ ]unsigned[ ]char[ ]\(y\|uv\)QuanTable51[18]\[\][ ]=' 'drivers/media/video/\(ov511\|gspca/ov519\)\.c'
2268     defsnc 'static[ ]const[ ]u8[ ]bridge_start_ov965x_\(\([qs]\?v\|x\)ga\|cif\)\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
2269     defsnc 'static[ ]const[ ]\(int\|s16\)[ ]hsv_\(red\|green\|blue\)_[xy]\[\][ ]=' drivers/media/video/gspca/sn9c20x.c
2270     defsnc 'static[ ]\(u16\|struct[ ]i2c_reg_u16\)[ ]\(bridge\|mt9\(v\(11[12]\|011\)\|m001\)\)_init\[\]\(\[2\]\)\?[ ]=' drivers/media/video/gspca/sn9c20x.c
2271     defsnc 'static[ ]\(u8\|struct[ ]i2c_reg_u8\)[ ]\(soi968\|ov\(76[67]0\|965[05]\)\|hv7131r\)_init\[\]\(\[2\]\)\?[ ]=' drivers/media/video/gspca/sn9c20x.c
2272     defsnc 'static[ ]struct[ ]nand_ecclayout[ ]onenand_oob_128[ ]=' drivers/mtd/onenand/onenand_base.c
2273     blob '#define[ ]BCM_5710_FW_\(\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION\|COMPILE_FLAGS\)[     ]*[0-9]\+\([\n]#define[ ]BCM_5710_FW_\(\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION\|COMPILE_FLAGS\)[        ]*[0-9]\+\)*' 'drivers/net/\(bnx2x[/]\)\?bnx2x_hsi\.h'
2274     blob 'static[ ]int[ ]__devinit[ ]bnx2x_check_firmware[(]struct[ ]bnx2x[ ][*]bp[)][\n][{][^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2275     blobna 'if[ ][(][(]fw_ver\[[0-3]\][ ]!=[ ]BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION[)]\([ ][|][|][\n][    ]*[(]fw_ver\[[0-3]\][ ]!=[ ]BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION[)]\)*[)][ ][{][^{}]*[}]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2276     blobna 'sprintf[(]fw_file_name[ ][+][ ]offset,[ ]["]%d[.]%d[.]%d[.]%d[.]fw["]\(,[\n][       ]*BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION\)*[)][;]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2277     blobna 'rc[ ]=[ ]bnx2x_check_firmware[(]bp[)][;]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2278     defsnc 'crb_128M_2M_map\[64\][ ]__cacheline_aligned_in_smp[ ]=' 'drivers/net/\(netxen/netxen_nic_hw.c\|qlcnic/qlcnic_hw.c\)'
2279     defsnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals\(_3070\)\?\[\][ ]=' 'drivers/net/wireless/\(prism54/islpci_dev\.c\|rt2x00/rt2800usb\.c\)'
2280     blobname 'wl1251-\(fw\|nvs\)\.bin' drivers/net/wireless/wl12xx/wl1251.h
2281     blobname 'iwmc3200wifi-\([ul]mac\|calib\)-sdio\.bin' drivers/net/wireless/iwmc3200wifi/sdio.c
2282     defsnc 'u16[ ]MCS_DATA_RATE\[2\]\[2\]\[77\][ ]=' 'drivers/staging/\(rtl8192su/ieee80211/rtl819x_HTProc\.c\|rtl8192u/r819xU_firmware\.c\)'
2283     blob 'u8[ ]Rtl8192SUFw\(Img\|Main\|Data\)Array\[\(Img\|Main\|Data\)ArrayLength\][ ]=[ ][{]'"$sepx$blobpat*$sepx"'[}][;]\([\n][\n]*u8[ ]Rtl8192SUFw\(Img\|Main\|Data\)Array\[\(Img\|Main\|Data\)ArrayLength\][ ]=[ ][{]'"$sepx$blobpat*$sepx"'[}][;]\)*' drivers/staging/rtl8192su/r8192SU_HWImg.c
2284     blobname 'RTL8192SU[/]\(rtl8192sfw\.bin\|\(boot\|main\|data\)\.img\)' drivers/staging/rtl8192su/r8192S_firmware.c
2285     blobna 'case[ ]FW_SOURCE_HEADER_FILE:[\n]#if[ ]1[\n]#define[^#]*[\n]#endif[\n][     ][      ][      ]break[;]' drivers/staging/rtl8192su/r8192S_firmware.c
2286     defsnc 'u32[ ]Rtl8192SU\(PHY_\(REG\|ChangeTo\)_\([12]T[12]R\)\?\|Radio[AB]_\(\(\(to\)\?[12]T\|GM\)_\)\?\|MAC\(PHY\|_[12]T\)_\|AGCTAB_\)Array\(_PG\)\?\[\(PHY_\(REG\|ChangeTo\)_\([12]T[12]R\)\?\|Radio[AB]_\(\(\(to\)\?[12]T\|GM\)_\)\?\|MAC\(PHY\|_[12]T\)_\|AGCTAB_\)Array\(_PG\)\?Length\][ ]=' drivers/staging/rtl8192su/rtl92SU_HWImg.c
2287     blob 'u8[ ]Rtl8192PciEFw\(Boot\|Main\|Data\)ArrayDTM\[\(Boot\|Main\|Data\)ArrayLengthDTM\][ ]=[ ][{][^}]*[}][;]' drivers/staging/rtl8192su/r8192S_FwImgDTM.h
2288     defsnc '\(static[ ]\)\?u32[ ]Rtl8192PciE\(PHY_REG\(_1T2R\)\?\|\(Radio[ABCD]\|MACPHY\|AGCTAB\)_\)Array\(_PG\)\?\(DTM\)\?\[\(\(PHY_REG\(_1T2R\)\?\|\(Radio[ABCD]\|MACPHY\|AGCTAB\)_\)Array\(_PG\)\?Length\(DTM\)\?\)\?\][ ]=' drivers/staging/rtl8192su/rtl8192S_FwImgDTM.h
2289     blobna '\([&]\|sizeof[(]\)rtl8190_fw\(boot\|main\|data\)_array\(\[0\]\|[)]\)\(,[    \n]*\([&]\|sizeof[(]\)rtl8190_fw\(boot\|main\|data\)_array\(\[0\]\|[)]\)\)*' 'drivers/staging/rtl8192su/r819\(2S\|xU\)_firmware\.c'
2290     blobname 'RTL8192U[/]\(boot\|main\|data\)\.img' 'drivers/staging/rtl8192s\?u/r819xU_firmware\.c'
2291     blob 'u8[ ]rtl8190_fw\(boot\|main\|data\)_array\[\][ ]=[ ]\?[{][^}]*[}][;]' 'drivers/staging/rtl8192s\?u/r8192xU_firmware_img\.c'
2292     defsnc 'u32[ ]Rtl8192Usb\(PHY_REG\(_1T2R\)\?\|\(Radio[ABCD]\|MACPHY\|AGCTAB\)_\)Array\(_PG\)\?\[\][ ]=' drivers/staging/rtl8192su/rtl819xU_firmware_img.c
2293     defsnc 'BYTE[ ]\(sbox\|dot[23]\)_table\[256\][ ]=' drivers/staging/vt6655/aes_ccmp.c
2294     defsnc '\(BYTE\|unsigned[ ]char\)[ ]byVT3253\(InitTab\|B0\(_AGC4\?\)\?\)_\(RFMD\(2959\)\?\|AIROHA2230\|UW2451\|AGC\)\[CB_VT3253\(B0\(_AGC4\?\)\?\)\?\(\(_INIT\)\?_FOR_\(RFMD\(2959\)\?\|AIROHA2230\|UW2451\|AGC\)\)\?\]\[2\][ ]=' drivers/staging/vt6655/baseband.c
2295     defsnc 'SCountryTable[ ]ChannelRuleTab\[CCODE_MAX[+]1\][ ]=' drivers/staging/vt6655/card.c
2296     defsnc 'static[ ]const[ ]long[ ]frequency_list\[\][ ]=' drivers/staging/vt6655/iwctl.c
2297     accept '#define[ ]CONFIG_PATH[ ]*["][/]etc[/]vntconfiguration[.]dat["]' drivers/staging/vt6655/device_cfg.h
2298     defsnc 'static[ ]const[ ]\(DWORD\|unsigned[ ]long\)[ ]s_adwCrc32Table\[256\][ ]=' drivers/staging/vt6655/tcrc.c
2299     defsnc 'const[ ]\(BYTE\|unsigned[ ]char\)[ ]TKIP_Sbox_\(Lower\|Upper\)\[256\][ ]=' drivers/staging/vt6655/tkip.c
2300     blobname 'prism2_ru\.\(hex\|fw\)' drivers/staging/wlan-ng/prism2fw.c
2301     defsnc 'static[ ]const[ ]u16[ ]wm8960_reg\[WM8960_CACHEREGNUM\][ ]=' sound/soc/codecs/wm8960.c
2302     blob '#include[ ]["]me4\(00\|61\)0_firmware\.h["]\([\n][\n]*#include[ ]["]me4\(00\|61\)0_firmware\.h["]\)*' drivers/staging/me4000/me4000.c
2303     blobna 'firm[ ]=[ ][^;]*xilinx_firm[^;]*[;]' drivers/staging/me4000/me4000.c
2304     # end of new in 2.6.31
2305     accept '[   ]*ramdisk[ ]=[ ]["][/]boot[/][^ ]*initrd[^ ]*\.img["]' Documentation/ia64/xen.txt
2306
2307     # in drm-*.patch, post-2.6.31
2308     blobname 'matrox[/]g[24]00_warp\.fw' drivers/gpu/drm/mga/mga_warp.c
2309     blobname 'r128[/]r128_cce\.bin' drivers/gpu/drm/r128/r128_cce.c
2310     blobname 'radeon[/]R\([123]0\|[45]2\|S6[09]\)0_cp\.bin' drivers/gpu/drm/radeon/r100.c
2311     blobname 'radeon[/]\(R\([67]0\|V6[1237]\|S7[1378]\)[05]\|CEDAR\|REDWOOD\|JUNIPER\|CYPRESS\|%s\)_\(pfp\|rlc\|me\)\.bin' drivers/gpu/drm/radeon/r600.c
2312     defsnc 'const[ ]u32[ ]r[67]xx_default_state\[\][ ]=' drivers/gpu/drm/radeon/r600_blit_shaders.c
2313     defsnc 'struct[ ]nv17_tv_norm_params[ ]nv17_tv_norms\[NUM_TV_NORMS\][ ]=' drivers/gpu/drm/nouveau/nv17_tv_modes.c
2314
2315     # New in or modified for 2.6.32
2316     blobname '\(cxgb3[/]\)\?ael20\(05_\(opt\|twx\)\|20_twx\)_edc\.bin' drivers/net/cxgb3/cxgb3_main.c
2317     blobname 'wl1271-\(fw\|nvs\)\.bin' drivers/net/wireless/wl12xx/wl1271.h
2318     defsnc 'static[ ]const[ ]struct[ ]aper_size_info_32[ ]u3_sizes\[8\?\][ ]=' drivers/char/agp/uninorth-agp.c
2319     defsnc 'static[ ]const[ ]unsigned[ ]short[ ]atkbd_set[23]_keycode\[\(512\|ATKBD_KEYMAP_SIZE\)\][ ]=' drivers/input/keyboard/atkbd.c
2320     defsnc '[   ][}][ ]common_modes\[17\][ ]=' drivers/gpu/drm/radeon/radeon_connectors.c
2321     defsnc '[   ][      ]*\(static[ ]\)\?\(const[ ]\)\?struct[ ]phy_reg[ ]phy_reg_init\(_0\)\?\[\][ ]=' drivers/net/r8169.c
2322     accept '[   ][      ]*struct[ ]phy_reg[ ]phy_reg_init_1\[\][ ]=[ ][{][^;]*0x8300[^;]*[}][;]' drivers/net/r8169.c
2323     blob 'static[ ]void[ ]rtl8168d_[12]_hw_phy_config[(]void[ ]__iomem[ ][*]ioaddr[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*[\n]\+[}]' drivers/net/r8169.c
2324     blobna 'rtl8168d_[12]_hw_phy_config[(]ioaddr[)][;]' drivers/net/r8169.c
2325     blobna 'static[ ]\(const[ ]\)\?struct[ ]phy_reg_init_[12]\[\][ ]=[ ][{][\n  {}0-9a-fx]*0x06,[ ]0xf8f9[\n    {}0-9a-fx]*[}][;]' drivers/net/r8169.c
2326     # This loads firmware to be flashed from filename provided through ethtool.
2327     accept 'int[ ]be_load_fw[(][^\n;{]*[)][ \n][{][^\n]*\([\n]\+[^\n}][^\n]*\)*ETHTOOL_FLASH_MAX_FILENAME[^\n]*\([\n]\+[^\n}][^\n]*\)*request_firmware[^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]' drivers/net/benet/be_main.c
2328     defsnc '[   ]u8[ ]init_hash_seed\[\][ ]=' drivers/net/qlge/qlge_main.c
2329     defsnc 'static[ ]const[ ]u_int32_t[ ]ar9287\(Common\|Modes\(_\([tr]x_gain\)\)\?\)_9287_1_[01]\[\]\[[236]\][ ]=' drivers/net/wireless/ath9k/initvals.h
2330     defsnc 'static[ ]const[ ]u_int32_t[ ]ar9271\(Common\|Modes\)_9271\(_1_0\)\?\[\]\[[26]\][ ]=' drivers/net/wireless/ath9k/initvals.h
2331     defsnc 'static[ ]const[ ]u8[ ]lpphy_min_sig_sq_table\[\][ ]=' drivers/net/wireless/b43/tables_lpphy.c
2332     defsnc 'static[ ]const[ ]u16[ ]lpphy_\(rev\(01\|2plus\)_noise_scale\|crs_gain_nft\|iqlo_cal\|rev[01]_ofdm_cck_gain\|\(a0_\)\?gain\|sw_control\)_table\[\][ ]=' drivers/net/wireless/b43/tables_lpphy.c
2333     defsnc 'static[ ]const[ ]u32[ ]lpphy_\(\(rev01_ps\|tx_power\)_control\|\(a0_\)\?gain_\(idx\|value\)\|papd_\(eps\|mult\)\)_table\[\][ ]=' drivers/net/wireless/b43/tables_lpphy.c
2334     blobname 'v4l-saa7164-1\.0\.[23]\.fw' drivers/media/video/saa7164/saa7164-fw.c
2335     defsnc 'static[ ]const[ ]u8[ ]n4_\(om6802\|other\|tas5130a\)\[\][ ]=' drivers/media/video/gspca/t613.c
2336     defsnc '[   ][      ]const[ ]struct[ ]sensor_w_data[ ]\(cif\|vga\)_sensor[01]_init_data\[\][ ]=' drivers/media/video/gspca/mr97310a.c
2337     defsnc '[   ]struct[ ]jlj_command[ ]start_commands\[\][ ]=' drivers/media/video/gspca/jeilinj.c
2338     defsnc 'static[ ]u8[ ]init_code\[\]\[2\][ ]=' drivers/media/dvb/dvb-usb/friio-fe.c
2339     defsnc 'static[ ]const[ ]u8[ ]va1j5jf8007[ts]_\(2[05]mhz_\)\?prepare_bufs\[\]\[2\][ ]=' 'drivers/media/dvb/pt1/va1j5jf8007[st]\.c'
2340     accept '[   ]request_firmware[(][)][ ]will[ ]hit[ ]an[ ]OOPS' drivers/media/dvb/frontends/dib7000p.c
2341     defsnc 'static[ ]long[ ]limiter_times\[\][ ]=' drivers/media/radio/si4713-i2c.c
2342     blobname 'c[tb]fw\(_\(fc\|cna\)\)\?\.bin' drivers/scsi/bfa/bfad_fwimg.c
2343     defsnc 'static[ ]const[ ]u16[ ]\(VDCDC[1x]\|LDO[12]\)_VSEL_table\[\][ ]=' 'drivers/regulator/tps650\(23\|7x\)-regulator\.c'
2344     defsnc 'static[ ]struct[ ]lms283gf05_seq[ ]disp_\(init\|pwdn\)seq\[\][ ]=' drivers/video/backlight/lms283gf05.c
2345     defsnc '[}][ ]csc_table\[\][ ]=' drivers/video/msm/mdp_csc_table.h
2346     defsnc '\(static[ ]\)\?struct[ ]mdp_table_entry[ ]mdp_\(\(upscale\|gaussian_blur\)_table\|downscale_[xy]_table_PT[2468]TO\(PT[468]\|1\)\)\[\][ ]=' drivers/video/msm/mdp_scale_tables.c
2347     accept '[   ][      ]card->firmware[ ]=[ ]data->firmware[;]'  drivers/bluetooth/btmrvl_sdio.c
2348     accept '[   ]isar->firmware[ ]=[ ][&]load_firmware[;]' drivers/isdn/hardware/mISDN/mISDNisar.c
2349     blobname 'isdn[/]ISAR\.BIN' drivers/isdn/hardware/mISDN/speedfax.c
2350     blobname '\(sep[/]\)\?\(cache\|resident\)\.image\.bin' drivers/staging/sep/sep_driver.c
2351     blobname 'RTL8192E[/]\(boot\|main\|data\)\.img' drivers/staging/rtl8192e/r819xE_firmware.c
2352     defsnc '\(static[ ]\)\?u32[ ]Rtl8190PciE\?\(AGCTAB_\|PHY_REG\(_1T2R\)\?\|Radio[ABCD]_\)Array\[\(AGCTAB_\|PHY_REG\(_1T2R\)\?\|Radio[ABCD]_\)ArrayLength\][ ]=' 'drivers/staging/\(rtl8192e/r819xE_phy\.c\|rtl8192u/r819xU_firmware_img.c\)'
2353     accept '[ ][*][ ]File:[ ]main_usb\.c\([\n][ ][*]\([^\n/]*\|[^*\n/][/]*\)*\)*[\n][ ][*][/]\([\n][\n]*#\(undef[ ][^\n]*\|include[ ]["][^\n]*["]\)\)*[\n][\n]*#include[ ]["]firmware\.h["]' drivers/staging/vt6656/main_usb.c
2354     blob 'const[ ]BYTE[ ]abyFirmware\[\][ ]=[ ][{][^;]*[}][;]' drivers/staging/vt6656/firmware.c
2355     defsnc '[}][ ]*ChannelRuleTab\[\][ ]=' drivers/staging/vt6656/channel.c
2356     defsnc '\(static[ ]\)\?struct[ ]register_address_value_pair[\n]\(preview_snapshot_mode\|noise_reduction\)_reg_settings_array\[\][ ]=' drivers/staging/dream/camera/mt9d112_reg.c
2357     blobname '\([/]tmp[/]\)\?RT30xxEEPROM\.bin' 'drivers/staging/rt3090/\(common/ee_efuse\.c\|rtmp_def\.h\)'
2358     defsnc 'static[ ]UINT8[ ]WPS_DH_\([PRX]\|RRModP\)_VALUE\[1\(9[23]\|84\)\][ ]=' drivers/staging/rt3090/common/crypt_biginteger.c
2359     defsnc '\(CH_FREQ_MAP\|struct[ ]rt_ch_freq_map\)[ ]CH_HZ_ID_MAP\[\][ ]\?=' 'drivers/staging/\(rt2860\|rt3090\)/common/rt_channel\.c'
2360     defsnc 'static[ ]const[ ]UINT32[ ]SHA256_K\[64\][ ]=' drivers/staging/rt3090/common/crpt_sha2.c
2361     defsnc '\(DOT11_REGULATORY_INFORMATION\|struct[ ]rt_dot11_regulatory_information\)[ ]\(USA\|Europe\|Japan\)RegulatoryInfo\[\][ ]=' 'drivers/staging/\(rt3090\|rt2860\)/common/spectrum\.c'
2362     defsnc 'static[ ]const[ ]USHORT[ ]Sbox\[256\][ ]=' drivers/staging/rt3090/sta/rtmp_ckipmic.c
2363     blob '#include[     ]*["]\(\.\.[/]\(\.\.[/]rt\(28[67]\|30[79]\)0[/]\(common[/]\)\?\)\?\)\?firmware\(_\(28[67]\|30[79]\)0\)\?\.h["]\([\n][\n]*#include[      ]*["]\(\.\.[/]\(\.\.[/]rt\(28[67]\|30[79]\)0[/]\(common[/]\)\?\)\?\)\?firmware\(_\(28[67]\|30[79]\)0\)\?\.h["]\)' 'drivers/staging/rt\(28[67]\|309\)0/common/rtmp_\(init\|mcu\)\.c'
2364     blobna 'FIRMWAREIMAGE_LENGTH[ ]==' drivers/staging/rt3090/common/rtmp_mcu.c
2365     defsnc 'int[ ]wm831x_isinkv_values\[WM831X_ISINK_MAX_ISEL[ ][+][ ][1]\][ ]=' drivers/mfd/wm831x-core.c
2366     defsnc 'static[ ]struct[ ]nand_ecclayout[ ]hwecc4_2048[ ]__initconst[ ]=' drivers/mtd/nand/davinci_nand.c
2367     defsnc 'static[ ]const[ ]u16[ ]wm8974_reg\[WM8974_CACHEREGNUM\][ ]=' sound/soc/codecs/wm8974.c
2368     defsnc 'static[ ]const[ ]u16[ ]ak4642_reg\[AK4642_CACHEREGNUM\][ ]=' sound/soc/codecs/ak4642.c
2369     accept 'int[ ]snd_hda_load_patch[(][^\n;{]*[)][ \n][{][^\n]*\([\n]\+[^\n}][^\n]*\)*hda_codec[^\n]*\([\n]\+[^\n}][^\n]*\)*request_firmware[^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]' sound/pci/hda/hda_hwdep.c
2370     accept '[ ][ ][ ]Bit[ 0-7]*' Documentation/input/sentelic.txt
2371     accept 'The[ ]hd-audio[ ]driver[ ]reads[ ]the[ ]file[ ]via[ ]request_firmware[(][)]\.' Documentation/sound/alsa/HD-Audio.txt
2372     blob 'SD8688[ ]firmware:[\n]*\([/]lib[/]firmware[^\n]*[\n]*\)*The[ ]images[^:]*:[\n]*[^\n]*[/]linux-firmware[^\n]*' Documentation/btmrvl.txt
2373     defsnc 'static[ ]u8[ ]ibm405ex_fbdv_multi_bits\[\][ ]=' arch/powerpc/boot/4xx.c
2374     defsnc 'static[ ]int[ ]zoom2_batt_table\[\][ ]=' arch/arm/mach-omap2/board-zoom2.c
2375     defsnc 'static[ ]struct[ ]ad714x_platf\(or\|ro\)m_data[ ]ad714[27]_\(\(spi\|i2c\)_\)\?platf\(or\|ro\)m_data[ ]=' arch/blackfin/mach-bf537/boards/stamp.c
2376     blob 'static[ ]const[ ]u8[ ]lgs8g75_initdat\[\][ ]=[ ][{][^;]*[}][;]' drivers/media/dvb/frontends/lgs8gxx.c
2377     blob 'static[ ]int[ ]lgs8g75_init_data[(][^\n;{]*[)][ \n][{][^\n]*\([\n]\+[^\n}][^\n]*\)*lgs8g75_initdat[^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]' drivers/media/dvb/frontends/lgs8gxx.c
2378     defsc 'static[ ]struct[ ]idxdata[ ]tbl_common\(_[a-e]\|5\|_\?3B\?\)\[\][ ]=' 'drivers/media/video/gspca/gl860/gl860-\(mi2020\|mi1320\|ov9655\|ov2640\)\.c'
2379     defsnc 'static[ ]struct[ ]validx[ ]tbl_\(commm\?on\|init_\(at_startup\|post_alt\)\|sensor_settings_common\(_[ab]\|1\)\|big\(_[abc]\|[123]\)\|640\|800\)\[\][ ]=' 'drivers/media/video/gspca/gl860/gl860-\(mi2020\|mi1320\|ov9655\|ov2640\).c'
2380     defsnc 'static[ ]u8[ ][*]tbl_\(640\|800\|1280\)\[\][ ]=' 'drivers/media/video/gspca/gl860/gl860-\(mi1320\|ov9655\).c'
2381     accept '[<][<]\([/]Subtype[/]Type1\)\?[/]BaseFont[^ ]*[/]FontDescriptor[ ][0-9][0-9]*[ ]0[ ]R\([/]Type[/]Font\)\?[\n]\?[/]FirstChar[ ][0-9][0-9]*[/]LastChar[ ][0-9][0-9]*[/]Widths\[[\n][0-9 \n]*\]' 'Documentation/DocBook/v4l/.*\.pdf'
2382
2383     # New in 2.6.33
2384     accept '[ ]*just[ ]run[ ]["]cat[ ][/]sys[/]firmware[/]acpi[/]tables[/]DSDT[ ]>[ ][/]tmp[/]dsdt[.]dat["]' Documentation/acpi/method-customizing.txt
2385     accept '[ ]*b[)][ ]disassemble[ ]the[ ]table[ ]by[ ]running[ ]["]iasl[ ]-d[ ]dsdt[.]dat["][.]' Documentation/acpi/method-customizing.txt
2386     accept '[ ]*x=["]7999\([ ][0-9]\+\)\+["]' Documentation/blockdev/drbd/DRBD-8.3-data-packets.svg
2387     defsnc 'static[ ]int[ ]zoom_batt_table\[\][ ]=' arch/arm/mach-omap2/board-zoom-peripherals.c
2388     defsnc 'static[ ]u16[ ]x[48]_vectors\[\][ ]=' drivers/edac/amd64_edac.c
2389     defsnc 'static[ ]const[ ]u16[ ]\(y\|uv\)_static_hcoeffs\[N_HORIZ_\(Y\|UV\)_TAPS[ ][*][ ]N_PHASES\][ ]=' drivers/gpu/drm/i915/intel_overlay.c
2390     accept '[   ]\.download_firmware[ ]=[ ]ec168_download_firmware,[\n][        ]\.firmware[ ]=[ ]' drivers/media/dvb/dvb-usb/ec168.c
2391     blobname 'dvb-usb-ec168\.fw' drivers/media/dvb/dvb-usb/ec168.c
2392     defsnc 'static[ ]const[ ]u16[ ]dib0090_defaults\[\][ ]=' drivers/media/dvb/frontends/dib0090.c
2393     defsnc 'static[ ]const[ ]struct[ ]dib0090_pll[ ]dib0090_pll_table\[\][ ]=' drivers/media/dvb/frontends/dib0090.c
2394     blobname 'dvb-fe-ds3000\.fw' drivers/media/dvb/frontends/ds3000.c
2395     blob '[/][*][ ]\(as[ ]of[ ][^\n]*[ ]current[ ]DS3000[ ]firmware\|DS3000[ ]FW\)[^/]*[*][/]\([\n][/][*]\([ ]\(as[ ]of[ ][^\n]*[ ]current[ ]DS3000[ ]firmware\|DS3000[ ]FW\)[^/]*\|[(]DEBLOBBED[)]\)[*][/]\)*' drivers/media/dvb/frontends/ds3000.c
2396     defsnc 'static[ ]u8[ ]ds3000_dvbs2\?_init_tab\[\][ ]=' drivers/media/dvb/frontends/ds3000.c
2397     defsnc '[   ]static[ ]const[ ]u16[ ]dvbs2_snr_tab\[\][ ]=' drivers/media/dvb/frontends/ds3000.c
2398     defsnc 'static[ ]const[ ]struct[ ]cnr[ ]cnr_tab\[\][ ]=' drivers/media/dvb/frontends/mb86a16.c
2399     defsnc 'u8[ ]lgtdqcs001f_inittab\[\][ ]=' drivers/media/dvb/mantis/mantis_vp1033.c
2400     defsnc 'static[ ]const[ ]struct[ ]ov9640_reg[ ]ov9640_regs_dflt\[\][ ]=' drivers/media/video/ov9640.c
2401     defsnc '\(const[ ]static\|static[ ]const\)[ ]struct[ ]rj54n1_reg_val[ ]bank_[4578]\[\][ ]=' drivers/media/video/rj54n1cb0c.c
2402     blob '#define[ ]_FW_NAME[(]api[)][ ]DRV_NAME[ ]["][.]["][ ]#api[ ]["]\.fw["]' drivers/media/video/iwmc3200top.h
2403     defsnc 'static[ ]struct[ ]nand_ecclayout[ ]nandv2_hw_eccoob_largepage[ ]=' drivers/mtd/nand/mxc_nand.c
2404     blob '#define[ ]FW_FILE_VERSION\([  ]*[\\][\n][     ]__stringify[(]BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION[)]\([ ]["][.]["]\)\?\)\+' 'drivers/net/\(bnx2x/\)\?bnx2x_main\.c'
2405     blobname 'bnx2x-e1h\?-["][ ]FW_FILE_VERSION[ ]["]\.fw' 'drivers/net/\(bnx2x/\)\?bnx2x_main\.c'
2406     blobname 'bnx2x-e1h\?-\([0-9.%d]*\.fw\)\?' 'drivers/net/\(bnx2x/\)\?bnx2x_main\.c'
2407     blob '#define[ ]FW_VERSION\([       ]__stringify[(]FW_VERSION_\(MAJOR\|MINOR\|MICRO\)[)]\([ ]["][.]["]\)\?\([       ]*[\\][\n]\)\?\)\+' drivers/net/cxgb3/cxgb3_main.c
2408     blobname 'cxgb3[/]t3fw-["][ ]FW_VERSION[ ]["]\.bin' drivers/net/cxgb3/cxgb3_main.c
2409     blob '#define[ ]TPSRAM_VERSION\([   ]__stringify[(]TP_VERSION_\(MAJOR\|MINOR\|MICRO\)[)]\([ ]["][.]["]\)\?\([       ]*[\\][\n]\)\?\)\+' drivers/net/cxgb3/cxgb3_main.c
2410     blobname 'cxgb3[/]t3\(%c\|[bc]\)_psram-["][ ]TPSRAM_VERSION[ ]["]\.bin' drivers/net/cxgb3/cxgb3_main.c
2411     defsnc '[   ]static[ ]const[ ]u8[ ]rsshash\[40\][ ]=' drivers/net/igb/igb_main.c
2412     defsnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_3\(02\)\?x\[\][ ]=' drivers/net/wireless/rt2x00/rt2800lib.c
2413     defsnc 'static[ ]struct[ ]conf_drv_settings[ ]default_conf[ ]=' drivers/net/wireless/wl12xx/wl1271_main.c
2414     defsnc 'static[ ]u16[ ]bios_to_linux_keycode\[256\][ ]=' drivers/platform/x86/dell-wmi.c
2415     accept '[   ]err[ ]=[ ]request_firmware[(][&]pm8001_ha->fw_image,' drivers/scsi/pm8001/pm8001_ctl.c
2416     defsnc 'static[ ]unsigned[ ]char[ ]vpdb0_data\[\][ ]=' drivers/scsi/scsi_debug.c
2417     defsnc 'static[ ]struct[ ]vesa_mode_table[ ]vesa_mode\[\][ ]=' drivers/staging/sm7xx/smtcfb.c
2418     defsnc 'struct[ ]ModeInit[ ]VGAMode\[\][ ]=' drivers/staging/sm7xx/smtcfb.h
2419     blob 'static[ ]const[ ]hcf_8[ ]fw_image_[1234]_data\[\][ ]=[^;]*[;]\([ ]*[/][*][ ]fw_image_[1234]_data[ ][*][/]\)\?' 'drivers/staging/wlags49_h2/\(ap\|sta\)_h25\?\.c'
2420     blobname '[/]etc[/]agere[/]fw\.bin' drivers/staging/wlags49_h2/wl_profile.c
2421     defsnc 'static[ ]const[ ]long[ ]chan_freq_list\[\]\[MAX_CHAN_FREQ_MAP_ENTRIES\][ ]=' drivers/staging/wlags49_h2/wl_util.c
2422     blob 'The[ ]ssinit[ ]program.*nsoniq.*sndscape.*sound[ ]weird\.' Documentation/sound/oss/README.OSS
2423     blobname 'scope\.cod' 'sound/isa/\(Kconfig\|sscape\.c\)'
2424     blobname '\(sndscape\|soundscape\)\.co\([?dx01234]\|%d\)' 'sound/isa/\(Kconfig\|sscape\.c\)\|Documentation/sound/oss/README\.OSS'
2425     defsnc 'static[ ]const[ ]u8[ ]\(adcm1700\|om6802\|po1030\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
2426     blobname 'ath3k-1\.fw' drivers/bluetooth/ath3k.c
2427     blobname 'nouveau[/]nv\([0-9a-f][0-9a-f]\|%02x\)\.ctx\(prog\|vals\)' 'drivers/gpu/drm/nouveau/\(nv50_graph\|nouveau_grctx\)\.c'
2428
2429     # New in 2.6.34
2430     blobname 'mts_mt9234\(mu\|zba\)\.fw' drivers/usb/serial/ti_usb_3410_5052.c
2431     blobname 'cxgb4[/]t4fw\.bin' drivers/net/cxgb4/cxgb4_main.c
2432     defsnc '[   ]static[ ]const[ ]unsigned[ ]int[ ]reg_ranges\[\][ ]=' drivers/net/cxgb4/cxgb4_main.c
2433     defsnc '[   ]static[ ]const[ ]unsigned[ ]int[ ]avg_pkts\[NCCTRL_WIN\][ ]=' drivers/net/cxgb4/t4_hw.c
2434     # above in -rc5
2435     defsnc 'static[ ]u32[ ]epll_div\[\]\[5\][ ]=' arch/arm/mach-s5p6440/clock.c
2436     accept '[   ]aru->firmware[ ]=[ ]fw[;]' drivers/net/wireless/ath/ar9170/usb.c
2437     accept '[   ]err[ ]=[ ]request_firmware[(][&]fw_entry,[ ]["]broadsheet\.wbf["],[ ]dev[)][;]' drivers/video/broadsheetfb.c
2438     # above in -rc2, below in -rc1
2439     accept '\(#[ ]\)\?\(Usage:[ ]cxacru-cf\.py[ ][<]\|Warning:\|Note:[ ]support[ ]for\)[ ]cxacru-cf\.bin' 'Documentation/networking/cxacru\(-cf\.py\|\.txt\)'
2440     defsnc 'static[ ]struct[ ]cdce_reg[ ]cdce_y1_27000\[\][ ]=' arch/arm/mach-davinci/cdce949.c
2441     defsnc '[   ]u16[ ]map\[\][ ]=' drivers/hwmon/asc7621.c
2442     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]az6027_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/az6027.c
2443     blobname 'dvb-usb-az6027-03\.fw' drivers/media/dvb/dvb-usb/az6027.c
2444     accept '[   ]p7500->firmware[ ]=' drivers/media/dvb/dvb-usb/dw2102.c
2445     blobname 'dvb-usb-p7500\.fw' drivers/media/dvb/dvb-usb/dw2102.c
2446     defsnc 'static[ ]u8[ ]ITUDecoderSetup\[4\]\[16\][ ]=' drivers/media/dvb/ngene/ngene-core.c
2447     blobname 'ngene_1[567]\.fw' drivers/media/dvb/ngene/ngene-core.c
2448     blobname 'sms1xxx-hcw-55xxx-i\?sdbt-02\.fw' drivers/media/dvb/siano/sms-cards.c
2449     defsnc 'static[ ]u8[ ]samsung_smt_7020_inittab\[\][ ]=' drivers/media/video/cx88/cx88-dvb.c
2450     defsnc 'static[ ]const[ ]u8[ ]\(bridge\|sensor\)_init\(_2\)\?\[\]\[2\][ ]=' drivers/media/video/gspca/ov534_9.c
2451     defsnc 'static[ ]const[ ]u8[ ]bridge_start_\([qs]\?v\|x\)ga\[\]\[2\][ ]=' drivers/media/video/gspca/ov534_9.c
2452     defsnc '[   ]struct[ ]init_command[ ]\(spy\|cif\|ms350\|genius\|vivitar\)_start_commands\[\][ ]=' drivers/media/video/gspca/sn9c2028.c
2453     defsnc 'static[ ]const[ ]u8[ ]n4_lt168g\[\][ ]=' drivers/media/video/gspca/t613.c
2454     initc 'static[ ]const[ ]\(__\)\?u8[ ]\(mi\(0360\|13[12]0\)\|po\(1200\|3130\)\|hv7131r\|ov76[67]0\)_\(\(soc\)\?_\?[iI]nit\(Q\?V\|SX\)GA\(_\(JPG\|data\)\)\?\|rundata\)\[\]\[4\][ ]=\([ ][{][*][/][;]\)\?' drivers/media/video/gspca/vc032x.c
2455     defsnc '[   ]static[ ]const[ ]u8[ ]gamma_tb\[6\]\[16\][ ]=' drivers/media/video/gspca/zc3xx.c
2456     blobname 'tlg2300_firmware\.bin' drivers/media/video/tlg2300/pd-main.c
2457     defsnc '[   ]u8[ ]pattern\[42\][ ]=' drivers/net/ksz884x.c
2458     defsnc '\(static[ ]\)\?const[ ]u8[ ]b43_ntab_framelookup\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2459     defsnc 'const[ ]u32[ ]\(b43_ntab_tx_gain_rev\(0_1_2\|3plus_2ghz\|\([34]\|5plus\)_5ghz\)\|txpwrctrl_tx_gain_ipa\(_\(rev\)\?[56]g\?\)\?\)\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2460     defsnc 'const[ ]u16[ ]tbl_iqcal_gainparams\[2\]\[9\]\[8\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2461     defsnc 'const[ ]struct[ ]nphy_txiqcal_ladder[ ]ladder_\(lo\|iq\)\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2462     defsnc 'const[ ]u16[ ]loscale\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2463     blobname 'isl38\(86\|87\|90\)\(pci\|usb\(_bare\)\?\)\?' 'drivers/net/wireless/p54/p54\(pci\.c\|usb\.[ch]\)'
2464     defsnc 'static[ ]struct[ ]conf_drv_settings[ ]default_conf[ ]=[ ][{][*][/][;]' drivers/net/wireless/wl12xx/wl1271_main.c
2465     defsnc '[   ][}][ ]grtpkts\[\][ ]=' drivers/staging/mimio/mimio.c
2466     blobname 'rt\(28[67]0\|30[79][01]\)\.bin' drivers/staging/rt2860/common/rtmp_mcu.c
2467     accept '[   ]adapter->firmware[ ]=[ ]fw[;]' drivers/staging/rt2860/common/rtmp_mcu.c
2468     blobna '[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*RTL8192SU[/]rtl8192sfw\.bin[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/staging/rtl8192su/r8192S_firmware.c
2469     accept 'MODULE_FIRMWARE[(]["]keyspan_pda[/]\(keyspan_pda\|xircom_pgs\)\.fw["][)][;]' drivers/usb/serial/keyspan_pda.c
2470     # It's not clear that wm2000_anc.bin is pure data.
2471     # Check with developer, clean up for now.
2472     blobname 'wm2000_anc\.bin' sound/soc/codecs/wm2000.c
2473     blob '[ ][*][ ]The[ ]download[ ]image[ ]for[ ]the[ ]WM2000[^*]*\([*]\+[^/*][^*]*\)*[*]*[<][ ]file[^*\n]*[\n][ ][*][/]' sound/soc/codecs/wm2000.c
2474     # accept '[ ][*][ ].wm2000_anc\.bin.[ ]by[ ]default' sound/soc/codecs/wm2000.c
2475     # accept '[ ][*][   ]*[<][ ]file[ ]\+[>]wm2000_anc\.bin' sound/soc/codecs/wm2000.c
2476     # accept '[ ]filename[ ]=[ ]["]wm2000_anc\.bin["][;]' sound/soc/codecs/wm2000.c
2477     defsnc '[}][ ]\(clk_sys_ratios\|bclk_divs\)\[\][ ]=' 'sound/soc/wm890[34]\.c'
2478     defsnc '[}][ ]clock_cfgs\[\][ ]=' sound/soc/codecs/wm8955.c
2479     blobname 'siu_spb\.bin' sound/soc/sh/siu_dai.c
2480     defsnc 'static[ ]const[ ]u8[ ]poxxxx_\(init\(_common\|Q\?VGA\|_end_1\|_start_3\)\|gamma\)\[\]\[4\][ ]=' drivers/media/video/gspca/vc032x.c
2481     defsnc 'crb_128M_2M_map\[64\][ ]__cacheline_aligned_in_smp[ ]=' 'drivers/net/\(netxen/netxen_nic_hw.c\|qlcnic/qlcnic_hw.c\)'
2482
2483     # New in 2.6.35
2484     defsnc 'static[ ]const[ ]u8[ ]gsm_fcs8\[256\][ ]=' drivers/char/n_gsm.c
2485     defsnc 'static[ ]u8[ ]\(reset_atetm\|atetm_[12]port\|portsel_\(port[12]\|2port\)\)\[BIT2BYTE[(]LEN_\(ETM\|PORT_SEL\)[)]\][ ]=' drivers/infiniband/hw/qib/qib_iba7322.c
2486     blobname 'qlogic[/]sd7220[.]fw' drivers/infiniband/hw/qib/qib_sd7220.c
2487     defsnc '[}][ ]est3_modes\[\][ ]=' drivers/gpu/drm/drm_edid.c
2488     defsnc 'static[ ]struct[ ]v_table[ ]v_table\[\][ ]=' drivers/gpu/drm/i915/i915_dma.c
2489     blobname 'orinoco_ezusb_fw' drivers/net/wireless/orinoco/orinoco_usb.c
2490     defsc 'static[ ]const[ ]struct[ ]ar9300_eeprom[ ]ar9300_default[ ]=' drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
2491     blobname 'ar9271[.]fw' drivers/net/wireless/ath/ath9k/hif_usb.c
2492     accept '[   ]hif_dev->firmware[ ]=[ ]NULL[;]' drivers/net/wireless/ath/ath9k/hif_usb.c
2493     defsnc 'static[ ]const[ ]u32[ ]ar9300_2p[02]_\(radio\|mac\|baseband\)_postamble\[\]\[5\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2494     defsnc 'static[ ]const[ ]u32[ ]ar9300Modes_\(\(low\(est\)\?\|high\)_ob_db\|high_power\)_tx_gain_table_2p[02]\[\]\[5\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2495     defsnc 'static[ ]const[ ]u32[ ]ar9\(300\|200_merlin\)_2p[02]_\(radio\|mac\|baseband\)_core\[\]\[2\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2496     defsnc 'static[ ]const[ ]u32[ ]ar9300Common_\(wo_xlna_\)\?rx_gain_table_\(merlin_\)\?2p[02]\[\]\[2\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2497     defsnc 'static[ ]const[ ]u32[ ]ar928\(5Modes_XE2\|7Modes_9287_1\)_0_\(normal\|high\)_power\[\]\[6\][ ]=' drivers/net/wireless/ath/ath9k/ar9002_initvals.h
2498     defsnc 'static[ ]const[ ]u32[ ]ar92\(87Common_9287_1_[01]\|71Common_9271\)\[\]\[2\][ ]=' drivers/net/wireless/ath/ath9k/ar9002_initvals.h
2499     defsnc 'static[ ]const[ ]u32[ ]ar92\(87\|71\)Modes_\(\(normal\|high\)_power_\)\?\([tr]x_gain_\)\?92\(87_1_[01]\|71\(_ANI_reg\)\?\)\[\]\[6\][ ]=' drivers/net/wireless/ath/ath9k/ar9002_initvals.h
2500     defsnc 'static[ ]int[ ]ath_max_4ms_framelen\[4\]\[32\][ ]=' drivers/net/wireless/ath/ath9k/xmit.c
2501     defsnc 'static[ ]const[ ]u8[ ]\(gc0307\|po2030n\|soi768\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
2502     defsnc '\(static[ ]\)\?struct[ ]crb_128M_2M_block_map[ ]crb_128M_2M_map\[64\][ ]=' 'drivers/scsi/\(qla2xxx/qla_nx\.c\|qla4xxx/ql4_nx\.c\)'
2503     defsnc 'static[ ]const[ ]unsigned[ ]int[ ]BUCK[123]_\(suspend_\)\?table\[\][ ]=' drivers/regulator/88pm8607.c
2504     defsnc '[   ]*static[ ]const[ ]char[ ]sha256_zero\[SHA256_DIGEST_SIZE\][ ]=' drivers/crypto/n2_core.c
2505     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_\(MD\|[CEV]G\)A_DAC\[\][ ]*=' drivers/staging/xgifb/vb_setmode.c
2506     defsnc '[}][ ]XGI\(fb_vrate\|_TV_filter\)\[\][ ]=' drivers/staging/xgifb/XGI_main.h
2507     defsnc '\(struct[ ]\)\?XGI_[ME]CLKDataStruct[ ]XGI\(3[34]0\|27\)\(New\)\?_[ME]CLKData\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2508     defsnc '\(UCHAR\|unsigned[ ]char\)[ ]XGI340_CR6[BE]\[8\]\[4\][ ]*=' drivers/staging/xgifb/vb_table.h
2509     defsnc '\(UCHAR\|unsigned[ ]char\)[ ]XGI340_CR6F\[8\]\[32\][ ]*=' drivers/staging/xgifb/vb_table.h
2510     defsnc '\(UCHAR\|unsigned[ ]char\)[ ]XGI330\(New\)\?_SR15\(_1\)\?\[8\]\[8\][ ]*=' drivers/staging/xgifb/vb_table.h
2511     defsnc '\(UCHAR\|unsigned[ ]char\)[ ]XGI330_cr40_1\[15\]\[8\][ ]*=' drivers/staging/xgifb/vb_table.h
2512     defsnc '\(struct[ ]\)\?XGI_StStruct[ ]XGI330_SModeIDTable\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2513     defsnc '\(struct[ ]\)\?XGI_ExtStruct[ ][ ]XGI330_EModeIDTable\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2514     defsnc '\(struct[ ]\)\?XGI_StandTableStruct[ ]XGI330_StandTable\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2515     defsnc '\([/][*]\)\?\(struct[ ]\)\?XGI330_LCDDataStruct[ ][ ]XGI_\(\(St2\?\|Ext\)LCD\(1024x768\|1280x1024\)\|NoScaling\)Data\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2516     defsnc '\(struct[ ]\)\?XGI330_TVDataStruct[ ][ ]XGI_\(St\|Ext\)\(PAL\|NTSC\|YPbPr\(525[ip]\|750p\)\)Data\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2517     defsnc '\(UCHAR\|unsigned[ ]char\)[ ]XGI330_\(NTSC\|PAL\|HiTV\(Ext\|St[12]\|Text\)\|YPbPr\(750p\|525[ip]\)\)Timing\[\][ ][ ]*=' drivers/staging/xgifb/vb_table.h
2518     defsnc '\(UCHAR\|unsigned[ ]char\)[ ]XGI330_HiTVGroup3\(Data\|Simu\|Text\)\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2519     defsnc '\(UCHAR\|unsigned[ ]char\)[ ]XGI330_Ren\(525\|750\)pGroup3\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2520     defsnc '\(struct[ ]\)\?XGI_PanelDelayTblStruct[ ]XGI330_PanelDelayTbl\[\]' drivers/staging/xgifb/vb_table.h
2521     defsnc '\(struct[ ]\)\?XGI330_LVDSDataStruct[ ][ ]XGI\(330\)\?_LVDS\(320x480\|800x600\|1024x768\|1280x\(1024\|768[NS]\?\)\|1400x1050\|640x480\)Data_[12]\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2522     defsnc '\(struct[ ]\)\?XGI_LVDSCRT1DataStruct[ ][ ]XGI_CHTVCRT1[UO]\(NTSC\|PAL\)\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2523     defsnc '\(struct[ ]\)\?XGI_ModeResInfoStruct[ ]XGI330_ModeResInfo\[\][ ]*=' drivers/staging/xgifb/vb_table.h
2524     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_DRAMType\[17\]\[5\][ ]*=' 'drivers/staging/xgifb/\(vb_table\.h\|vb_init\.c\)'
2525     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_SDRDRAM_TYPE\[13\]\[5\][ ]*=' 'drivers/staging/xgifb/\(vb_table\.h\|vb_init\.c\)'
2526     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_DDRDRAM_TYPE20\[12\]\[5\][ ]*=' 'drivers/staging/xgifb/\(vb_table\.h\|vb_init\.c\)'
2527     blobname 'TIInit_\(\(%d\|[0-9]\+\)[.]\)\+bts' drivers/staging/ti-st/st_kim.c
2528     defsnc 'static[ ]int16[ ]mdp_scale_\(pixel_repeat\|0p[2468]_to_[08]p[0468]\)_C[0123]\[MDP_SCALE_COEFF_NUM\][ ]=' drivers/staging/msm/mdp_ppp_v31.c
2529     # qseed_table2 is kind of suspicious, but there's some regularity
2530     # to it that makes me think it's just data.
2531     defsnc 'static[ ]uint32[ ]vg_qseed_table2\[\][ ]=' drivers/staging/msm/mdp4_util.c
2532     defsnc 'char[ ]gc_lut\[\][ ]=' drivers/staging/msm/mdp4_util.c
2533     defsnc 'uint32[ ]igc_\(video\|rgb\)_lut\[\][ ]=' drivers/staging/msm/mdp4_util.c
2534     defsnc 'static[ ]word[ ]convert_8_to_16_tbl\[256\][ ]=' drivers/staging/msm/ebi2_tmd20.c
2535     defsnc 'static[ ]struct[ ]sharp_spi_data[ ]init_sequence\[\][ ]=' drivers/staging/msm/lcdc_sharp_wvga_pt.c
2536     blobname 'xc3028L\?-v[0-9]\+\.fw' drivers/staging/tm6000/tm6000-cards.c
2537     defsnc 'static[ ]const[ ]struct[ ]chs_entry[ ]chs_table\[\][ ]=' drivers/mtd/sm_ftl.c
2538     blobname 'asihpi[/]dsp\(%04x\|[0-9a-f][0-9a-f][0-9a-f][0-9a-f]\)\.bin' sound/pci/asihpi/hpidspcd.c
2539     defsnc 'static[ ]unsigned[ ]long[ ]ident_map\[32\][ ]=' kernel/exec_domain.c
2540     defsnc 'static[ ]uint[ ]patch_2000\[\][ ]__initdata[ ]=' arch/powerpc/sysdev/micropatch
2541     # Are these ucode patches really data?!?  They were taken as such
2542     # since gNewSense started cleaning up Linux, but they look awfully
2543     # suspicious to me.
2544     defsnc '\(static[ ]\)\?uint[ ]patch_2[0ef]00\[\][ ]\(__initdata[ ]\)\?=' arch/powerpc/sysdev/micropatch.c
2545     defsnc 'static[ ]u32[ ]epll_div\[\]\[4\][ ]=' arch/arm/mach-s5pc100/clock.c
2546     blobname 'iwlwifi-6000g2[ab]-' drivers/net/iwlwifi/iwl-6000.c
2547     blobna '[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*[(]f2255usb\.bin[)][^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/media/video/s2255drv.c
2548
2549     # New in 2.6.36:
2550     defsnc 'static[ ]struct[ ]clk_pll_table[ ]tegra_pll_[px]_table\[\][ ]=' arch/arm/mach-tegra/tegra2_clocks.c
2551     defsnc 'static[ ]struct[ ]nand_ecclayout[ ]qi_lb60_ecclayout_[12]gb[ ]=' arch/mips/jz4740/board-qi_lb60.c
2552     blobname 'qt602240\.fw' drivers/input/touchscreen/qt602240_ts.c
2553     blobname 'lgs8g75\.fw' drivers/media/dvb/frontends/lgs8gxx.c
2554     defsnc 'static[ ]const[ ]struct[ ]ucbus_write_cmd[ ]\(icx098bq\|lz24bp\)_start_[012]\[\][ ]=' drivers/media/video/gspca/sq930x.c
2555     defsnc '[}][ ]capconfig\[4\]\[2\][ ]=' drivers/media/video/gspca/sq930x.c
2556     blobname 'ar7010\(_1_1\)\?[.]fw' drivers/net/wireless/ath/ath9k/hif_usb.c
2557     defsnc 'static[ ]u8[ ]sa2400_rf_rssi_map\[\][ ]=' drivers/net/wireless/rtl818x/rtl8180_sa2400.c
2558     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]pwm_lookup_table\[256\][ ]=' drivers/platform/x86/compal-laptop.c
2559     defsnc 'static[ ]int[ ]tps6586x_\(ldo4\|sm2\|dvm\)_voltages\[\][ ]=' drivers/regulator/tps6586x-regulator.c
2560     defsnc 'static[ ]const[ ]unsigned[ ]int[ ]muxonechan\[\][ ]=' drivers/staging/comedi/drivers/adv_pci1710.c
2561     defsnc 'const[ ]struct[ ]\(stk1160\|saa7113\)config[ ][{][^}]*[}][ ]\(stk1160\|saa7113\)config\[256\][ ]=' drivers/staging/easycap/easycap_low.c
2562     defsnc 'int[ ]tones\[2048\][ ]=' drivers/staging/easycap/easycap_testcard.c
2563     defsnc 'const[ ]unsigned[ ]char[ ]map_table\[\][ ]=' drivers/staging/lirc/lirc_ttusbir.c
2564     defsnc 'static[ ]unsigned[ ]char[ ]jpeg_header\[\][ ]=' drivers/staging/solo6x10/solo6010-jpeg.h
2565     defsc 'static[ ]const[ ]unsigned[ ]int[ ]solo_osd_font\[\][ ]=' drivers/staging/solo6x10/solo6010-osd-font.h
2566     defsnc '[   ]unsigned[ ]char[ ]regs\[128\][ ]=' drivers/staging/solo6x10/solo6010-tw28.c
2567     defsnc 'static[ ]unsigned[ ]char[ ]vid_vop_header\[\][ ]=' drivers/staging/solo6x10/solo6010-v4l2-enc.c
2568     defsnc 'static[ ]const[ ]u16[ ]rop_\(map1\|action\|info\)\[\][ ]=' drivers/staging/tidspbridge/dynload/reloc_table_c6000.c
2569     defsnc 'static[ ]const[ ]u16[ ]tramp_\(map\|action\|info\)\[\][ ]=' drivers/staging/tidspbridge/dynload/tramp_table_c6000.c
2570     defsnc 'unsigned[ ]char[ ]\(sbox\|dot[23]\)_table\[256\][ ]=' drivers/staging/vt6655/aes_ccmp.c
2571     defsnc 'static[ ]struct[ ]pll_map[ ]pll_value\[\][ ]=' drivers/video/via/hw.c
2572     defsnc '[   ][      ]degrade_factor\[CPU_LOAD_IDX_MAX\]\[DEGRADE_SHIFT[ ][+][ ]1\][ ]=' kernel/sched.c
2573     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]expected_result\[FIFO_SIZE\][ ]=' samples/kfifo/bytestream-example.c
2574     defsnc 'static[ ]const[ ]int[ ]expected_result\[FIFO_SIZE\][ ]=' samples/kfifo/inttype-example.c
2575     blobname 'haup-ir-blaster\.bin' drivers/input/lirc/lirc_zilog.c
2576     ;;
2577
2578   */*freedo*.patch | */*logo*.patch)
2579     accept 'P[13]\([\n]#[^\n]*\)*[\n]*\([\n][0-9 ]*\)\+' drivers/video/logo/logo_libre_clut224.ppm
2580     ;;
2581
2582   */rtl8180*.patch)
2583     defsnc 'static[ ]u8[ ]sa2400_rf_rssi_map\[\][ ]=' drivers/net/wireless/rtl818x/rtl8180_sa2400.c
2584     ;;
2585
2586   */patch*-2.6.36.*)
2587     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]u32[ ]ar9300_2p[02]_\(radio\|mac\|baseband\)_postamble\[\]\[5\][ ]=\([ ][{][*][/][;]\)\?' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2588     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]u32[ ]ar9300Modes_\(\(low\(est\)\?\|high\)_ob_db\|high_power\)_tx_gain_table_2p[02]\[\]\[5\][ ]=\([ ][{][*][/][;]\)\?' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2589     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]u32[ ]ar9\(300\|200_merlin\)_2p[02]_\(radio\|mac\|baseband\)_core\[\]\[2\][ ]=\([ ][{][*][/][;]\)\?' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2590     ;;
2591
2592   */patch*-2.6.36-rc*)
2593     accept 'FIRMWARE[ ]LOADER[ ][(]request_firmware[)]' MAINTAINERS
2594     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]__\(cpu\)\?initdata[ ]mV_vrm85\[32\][ ]=' arch/x86/kernel/cpu/cpufreq/longhaul.h
2595     accept '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?\(static[ ]int[\n ]\)\?_request_firmware[(]const[ ]struct[ ]firmware[ ][*][*]firmware_p,' drivers/base/firmware_class.c
2596     accept 'static[ ]int[\n ]request_firmware_work_func[(]void[ ][*]arg[)][\n][{]\([\n]\+[^\n}][^\n]*\)*ret[ ]=[ ]_request_firmware[(][^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}][\n]' drivers/base/firmware_class.c
2597     accept '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?request_firmware_nowait[(]' drivers/base/firmware_class.c
2598     accept '[   ]task[ ]=[ ]kthread_run[(]request_firmware_work_func' drivers/base/firmware_class.c
2599     defsnc '[   ]*static[ ]const[ ]char[ ]sha256_zero\[SHA256_DIGEST_SIZE\][ ]=' drivers/crypto/n2_core.c
2600     defsnc '[}][ ]est3_modes\[\][ ]=' drivers/gpu/drm/drm_edid.c
2601     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?const[ ]u32[ ]r[67]xx_default_state\[\][ ]=\([*][/][;]\)\?' drivers/gpu/drm/radeon/r600_blit_shaders.c
2602     blobname 'dvb-usb-p7500\.fw' drivers/media/dvb/dvb-usb/dw2102.c
2603     blobname 'dvb-usb-\(\(megasky\|digivox\)-02\|tvwalkert\|dposh-01\)\.fw' drivers/media/dvb/dvb-usb/m920x.c
2604     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]struct[ ]regdesc[ ]\(ofsm_init\|tuner_init_\(env77h11d5\|mt2060\(_2\)\?\|mxl500\(3d\|5\)\|qt1010\|mc44s803\|unknown\|tda18271\)\)\[\][ ]=\([ ][{][*][/][;]\)\?' drivers/media/dvb/frontends/af9013_priv.h
2605     blobname 'sms1xxx-hcw-55xxx-i\?sdbt-02\.fw' drivers/media/dvb/siano/sms-cards.c
2606     blobname 'sms1xxx-\(stellar\|nova-[ab]\|hcw-55xxx\)-dvbt-0[12]\.fw' drivers/media/dvb/siano/sms-cards.c
2607     initc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]struct[ ]idxdata[ ]tbl_common\(_[a-e]\|5\|_\?3B\?\)\[\][ ]=\([ ][{][*][/][;]\)\?' 'drivers/media/video/gspca/gl860/gl860-\(mi2020\|mi1320\|ov9655\|ov2640\)\.c'
2608     blobname 'bnx2[/]bnx2-\(mips\|rv2p\)-[-0-9a-z.]*\.fw' drivers/net/bnx2.c
2609     defsnc 'static[ ]const[ ]struct[ ]arb_line[ ]read_arb_data\[NUM_RD_Q\]\[MAX_RD_ORD[ ][+][ ]1\][ ]=' drivers/net/bnx2x/bnx2x_init_opts.h
2610     defsnc 'static[ ]const[ ]struct[ ]arb_line[ ]write_arb_data\[NUM_WR_Q\]\[MAX_WR_ORD[ ][+][ ]1\][ ]=' drivers/net/bnx2x/bnx2x_init_opts.h
2611     blob '#define[ ]FW_FILE_VERSION\([  ]*[\\][\n][     ]__stringify[(]BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION[)]\([ ]["][.]["]\)\?\)\+' 'drivers/net/\(bnx2x/\)\?bnx2x_main\.c'
2612     blobname 'bnx2x-e1h\?-["][ ]FW_FILE_VERSION[ ]["]\.fw' 'drivers/net/\(bnx2x/\)\?bnx2x_main\.c'
2613     blobname 'bnx2x-e1h\?-\([0-9.%d]*\.fw\)\?' 'drivers/net/\(bnx2x/\)\?bnx2x_main\.c'
2614     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]void[ ]get_regs[(]struct[ ]net_device[ ][*]dev,\([^\n]*[*][/][;]\)\?' drivers/net/cxgb4/cxgb4_main.c
2615     defsnc 'static[ ]\(const[ ]\)\?u32[ ]ar\(5416\|9280\)\(Modes\(_fast_clock\)\?\|Common\|BB_RfGain\|Bank6\(TPC\)\?\|Addac\)\(_91[06]0\(_\?1_1\)\?\|_9280\(_2\)\?\)\?\[\]\[[236]\][ ]=' 'drivers/net/wireless/ath9k/\(ar\(5008\|9001\)_\)\?initvals\.h'
2616     defsnc 'static[ ]\(const[ ]\)\?u\(32\|_int32_t\)[ ]ar928[05]\(Common\|Modes\(_\(fast_clock\|backoff_[12]3db_rxgain\|\(original\|high_power\)_[tr]x_\?gain\)\)\?\)_928\(0_2\|5\(_1_2\)\?\)\[\]\[[236]\][ ]=' 'drivers/net/wireless/ath9k/\(ar9002_\)\?initvals\.h'
2617     defsnc 'static[ ]const[ ]u32[ ]ar928\(5Modes_XE2\|7Modes_9287_1\)_0_\(normal\|high\)_power\[\]\[6\][ ]=' drivers/net/wireless/ath/ath9k/ar9002_initvals.h
2618     defsnc 'static[ ]const[ ]u32[ ]ar92\(87Common_9287_1_[01]\|71Common_9271\)\[\]\[2\][ ]=' drivers/net/wireless/ath/ath9k/ar9002_initvals.h
2619     defsnc 'static[ ]const[ ]u32[ ]ar92\(87\|71\)Modes_\(\(normal\|high\)_power_\)\?\([tr]x_gain_\)\?92\(87_1_[01]\|71\(_ANI_reg\)\?\)\[\]\[6\][ ]=' drivers/net/wireless/ath/ath9k/ar9002_initvals.h
2620     defsnc 'static[ ]const[ ]u32[ ]ar9300_2p[02]_\(radio\|mac\|baseband\)_postamble\[\]\[5\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2621     defsnc 'static[ ]const[ ]u32[ ]ar9300Modes_\(\(low\(est\)\?\|high\)_ob_db\|high_power\)_tx_gain_table_2p[02]\[\]\[5\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2622     defsnc 'static[ ]const[ ]u32[ ]ar9\(300\|200_merlin\)_2p[02]_\(radio\|mac\|baseband\)_core\[\]\[2\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2623     defsnc 'static[ ]const[ ]u32[ ]ar9300Common_\(wo_xlna_\)\?rx_gain_table_\(merlin_\)\?2p[02]\[\]\[2\][ ]=' 'drivers/net/wireless/ath/ath9k/ar9003_\(2p[02]_\)\?initvals\.h'
2624     blobname 'ar9271[.]fw' drivers/net/wireless/ath/ath9k/hif_usb.c
2625     accept 'static[ ]int[ ]ipw2100_mod_firmware_load[(]' 'drivers/net/wireless/\(ipw2x00/\)\?ipw2100\.c'
2626     accept '[   ]*card->firmware[ ]=[ ]\(if_sdio\|lbs_fw\|fw_name\)' drivers/net/wireless/libertas/if_sdio.c
2627     blobname 'rt\(28[67]0\|30[79][01]\)\.bin' drivers/staging/rt2860/common/rtmp_mcu.c
2628     blob '#define[ ]BCM_5710_FW_\(\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION\|COMPILE_FLAGS\)[     ]*[0-9]\+\([\n]#define[ ]BCM_5710_FW_\(\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION\|COMPILE_FLAGS\)[        ]*[0-9]\+\)*' 'drivers/net/\(bnx2x[/]\)\?bnx2x_hsi\.h'
2629     blob 'static[ ]int[ ]__devinit[ ]bnx2x_check_firmware[(]struct[ ]bnx2x[ ][*]bp[)][\n][{][^\n]*\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2630     blobna 'if[ ][(][(]fw_ver\[[0-3]\][ ]!=[ ]BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION[)]\([ ][|][|][\n][    ]*[(]fw_ver\[[0-3]\][ ]!=[ ]BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION[)]\)*[)][ ][{][^{}]*[}]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2631     blobna 'sprintf[(]fw_file_name[ ][+][ ]offset,[ ]["]%d[.]%d[.]%d[.]%d[.]fw["]\(,[\n][       ]*BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION\)*[)][;]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2632     blobna 'rc[ ]=[ ]bnx2x_check_firmware[(]bp[)][;]' 'drivers/net/\(bnx2x[/]\)\?bnx2x_main\.c'
2633     defsnc '\(static[ ]\)\?struct[ ]crb_128M_2M_block_map[ ]crb_128M_2M_map\[64\][ ]=' 'drivers/scsi/\(qla2xxx/qla_nx\.c\|qla4xxx/ql4_nx\.c\)'
2634     defsnc 'u16[ ]MCS_DATA_RATE\[2\]\[2\]\[77\][ ]=' 'drivers/staging/\(rtl8192su/ieee80211/rtl819x_HTProc\.c\|rtl8192u/r819xU_firmware\.c\)'
2635     defsnc 'u32[ ]Rtl8192SU\(PHY_\(REG\|ChangeTo\)_\([12]T[12]R\)\?\|Radio[AB]_\(\(\(to\)\?[12]T\|GM\)_\)\?\|MAC\(PHY\|_[12]T\)_\|AGCTAB_\)Array\(_PG\)\?\[\(PHY_\(REG\|ChangeTo\)_\([12]T[12]R\)\?\|Radio[AB]_\(\(\(to\)\?[12]T\|GM\)_\)\?\|MAC\(PHY\|_[12]T\)_\|AGCTAB_\)Array\(_PG\)\?Length\][ ]=' drivers/staging/rtl8192su/rtl92SU_HWImg.c
2636     defsnc '[}][ ]*ChannelRuleTab\[\][ ]=' drivers/staging/vt6656/channel.c
2637     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_DRAMType\[17\]\[5\][ ]*=' 'drivers/staging/xgifb/\(vb_table\.h\|vb_init\.c\)'
2638     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_SDRDRAM_TYPE\[13\]\[5\][ ]*=' 'drivers/staging/xgifb/\(vb_table\.h\|vb_init\.c\)'
2639     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_DDRDRAM_TYPE20\[12\]\[5\][ ]*=' 'drivers/staging/xgifb/\(vb_table\.h\|vb_init\.c\)'
2640     defsnc '\(USHORT\|unsigned[ ]short\)[ ]XGINew_\(MD\|[CEV]G\)A_DAC\[\][ ]*=' drivers/staging/xgifb/vb_setmode.c
2641     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?\(UCHAR\|unsigned[ ]char\)[ ]XGI340_CR6F\[8\]\[32\][ ]*=\([{][*][/][;]\)\?' drivers/staging/xgifb/vb_table.h 
2642     blobname 'sd\(8385\|868[68]\)\(_helper\)\?\.bin' 'drivers/\(net/wireless/libertas/if_sdio\.c\|bluetooth/btmrvl_sdio\.c\)'
2643     accept '[   ]p7500->firmware[ ]=' drivers/media/dvb/dvb-usb/dw2102.c
2644     blobname 'dvb-usb-p7500\.fw' drivers/media/dvb/dvb-usb/dw2102.c
2645     accept '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]struct[ ]dvb_usb_device_properties[ ]\(megasky\|digivox_mini_ii\|tvwalkertwin\|dposh\)_properties[ ]=[ ][{]\([*][/][;]\)\?[\n]\([     ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/m920x.c
2646     blobname 'dvb-usb-\(\(megasky\|digivox\)-02\|tvwalkert\|dposh-01\)\.fw' drivers/media/dvb/dvb-usb/m920x.c
2647     defsnc 'static[ ]const[ ]struct[ ]usb_action[ ]\(cs2102\|hdcs2020xx\|icm105a\(xx\)\?\|ov7630c\|mt9v111_[13]\|pb0330\([3x]x\)\?\|mi0360soc\)_Initial\(Scale\)\?\[\][ ]=' drivers/media/video/gspca/zc3xx.c
2648     blobname 'myri10ge_\(rss_\)\?ethp\?_z8e\.dat' drivers/net/myri10ge.c
2649     blobname 'iwlwifi-6000g2[ab]-' drivers/net/iwlwifi/iwl-6000.c
2650     blobname '#api[ ]["]\.ucode["]' 'drivers/net/iwlwifi/iwl-\(3945.h\|\(4965\|[156]000\)\.c\)'
2651     blobname 'c[tb]fw\(_\(fc\|cna\)\)\?\.bin' drivers/scsi/bfa/bfad_fwimg.c
2652     blobna 'seq_printf[(]seq[,][ ]["][^"]*%s[ ]%s[^"]*["][,][   \n]*\(GB_RCV\|MOJAVE_\)UCODE_VERS_STRING[,][ ]\(GB_RCV\|MOJAVE_\)UCODE_VERS_DATE[)][;]\([       \n]*seq_printf[(]seq[,][ ]["][^"]*%s[ ]%s[^"]*["][,][   \n]*\(GB_RCV\|MOJAVE_\)UCODE_VERS_STRING[,][ ]\(GB_RCV\|MOJAVE_\)UCODE_VERS_DATE[)][;]\)*' drivers/staging/slicoss/slicoss.c
2653     blobname 'slicoss[/]\(oasis\|gb\)\(rcvucode\|download\)\.sys' drivers/staging/slicoss/slicoss.c
2654     blobname 'CMV[x9ae][yip]\.bin\(\.v2\)\?' drivers/usb/atm/ueagle-atm.c
2655     blobname 'v4l-cx2341x-\(enc\|dec\)\.fw' include/media/cr2341x.h
2656     blobname 'yam[/]\(12\|96\)00\.bin' drivers/net/hamradio/yam.c
2657     blob 'If[ ]you[ ]need[ ]to[ ]use[ ]any[ ]of[ ]the[ ]above[^\n]*download[^:]*:[\n    ]*http:[^\n]*ixp4[^\n]*' Documentation/arm/IXP4xx
2658     # New in 2.6.36-rc3:
2659     defsnc 'static[ ]struct[ ]clk_pll_table[ ]tegra_pll_[px]_table\[\][ ]=' arch/arm/mach-tegra/tegra2_clocks.c
2660     defsnc 'static[ ]struct[ ]nand_ecclayout[ ]qi_lb60_ecclayout_[12]gb[ ]=' arch/mips/jz4740/board-qi_lb60.c
2661     blobname 'qt602240\.fw' drivers/input/touchscreen/qt602240_ts.c
2662     blobname 'lgs8g75\.fw' drivers/media/dvb/frontends/lgs8gxx.c
2663     defsnc 'static[ ]const[ ]struct[ ]ucbus_write_cmd[ ]\(icx098bq\|lz24bp\)_start_[012]\[\][ ]=' drivers/media/video/gspca/sq930x.c
2664     defsnc '[}][ ]capconfig\[4\]\[2\][ ]=' drivers/media/video/gspca/sq930x.c
2665     blobname 'ar7010\(_1_1\)\?[.]fw' drivers/net/wireless/ath/ath9k/hif_usb.c
2666     defsnc 'static[ ]u8[ ]sa2400_rf_rssi_map\[\][ ]=' drivers/net/wireless/rtl818x/rtl8180_sa2400.c
2667     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]pwm_lookup_table\[256\][ ]=' drivers/platform/x86/compal-laptop.c
2668     defsnc 'static[ ]int[ ]tps6586x_\(ldo4\|sm2\|dvm\)_voltages\[\][ ]=' drivers/regulator/tps6586x-regulator.c
2669     defsnc 'static[ ]const[ ]unsigned[ ]int[ ]muxonechan\[\][ ]=' drivers/staging/comedi/drivers/adv_pci1710.c
2670     defsnc 'const[ ]struct[ ]\(stk1160\|saa7113\)config[ ][{][^}]*[}][ ]\(stk1160\|saa7113\)config\[256\][ ]=' drivers/staging/easycap/easycap_low.c
2671     defsnc 'int[ ]tones\[2048\][ ]=' drivers/staging/easycap/easycap_testcard.c
2672     defsnc 'const[ ]unsigned[ ]char[ ]map_table\[\][ ]=' drivers/staging/lirc/lirc_ttusbir.c
2673     defsnc 'static[ ]unsigned[ ]char[ ]jpeg_header\[\][ ]=' drivers/staging/solo6x10/solo6010-jpeg.h
2674     defsc 'static[ ]const[ ]unsigned[ ]int[ ]solo_osd_font\[\][ ]=' drivers/staging/solo6x10/solo6010-osd-font.h
2675     defsnc '[   ]unsigned[ ]char[ ]regs\[128\][ ]=' drivers/staging/solo6x10/solo6010-tw28.c
2676     defsnc 'static[ ]unsigned[ ]char[ ]vid_vop_header\[\][ ]=' drivers/staging/solo6x10/solo6010-v4l2-enc.c
2677     defsnc 'static[ ]const[ ]u16[ ]rop_\(map1\|action\|info\)\[\][ ]=' drivers/staging/tidspbridge/dynload/reloc_table_c6000.c
2678     defsnc 'static[ ]const[ ]u16[ ]tramp_\(map\|action\|info\)\[\][ ]=' drivers/staging/tidspbridge/dynload/tramp_table_c6000.c
2679     defsnc 'unsigned[ ]char[ ]\(sbox\|dot[23]\)_table\[256\][ ]=' drivers/staging/vt6655/aes_ccmp.c
2680     defsnc 'static[ ]struct[ ]pll_map[ ]pll_value\[\][ ]=' drivers/video/via/hw.c
2681     defsnc '[   ][      ]degrade_factor\[CPU_LOAD_IDX_MAX\]\[DEGRADE_SHIFT[ ][+][ ]1\][ ]=' kernel/sched.c
2682     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]expected_result\[FIFO_SIZE\][ ]=' samples/kfifo/bytestream-example.c
2683     defsnc 'static[ ]const[ ]int[ ]expected_result\[FIFO_SIZE\][ ]=' samples/kfifo/inttype-example.c
2684     blobname 'haup-ir-blaster\.bin' drivers/input/lirc/lirc_zilog.c
2685     ;;
2686
2687   */hid-support*.patch)
2688     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]unsigned[ ]char[ ]hid_keyboard\[256\][ ]=\([ ][{][*][/][;]\)\?' drivers/hid/hid-input.c
2689     ;;
2690
2691   */sched*)
2692     accept 'CPU[ ]\+before[ ]\+after[\n]\([\n][01][0-9][ ]\+:[ ][0-9]\+[ ]\+:[ ][67]\)*'
2693     defsnc '[   ][      ]degrade_factor\[CPU_LOAD_IDX_MAX\]\[DEGRADE_SHIFT[ ][+][ ]1\][ ]=' kernel/sched.c
2694     accept '\(All[ ]CPUS[ ]idle[ ]for[ ]10[ ]seconds[ ][(]HZ=1000[)]\|One[ ]CPU[ ]busy[ ]rest[ ]idle[ ]for[ ]10[ ]seconds\|All[ ]CPUs[ ]busy[ ]for[ ]10[ ]seconds\)[\n][0-9 \n]*'
2695     accept 'domainstats:[ ]*domain0[\n][ ]*cpu[ ]*cnt[ ]*bln[ ]*fld[ ]*imb[ ]*gain[ ]*hgain[ ]*nobusyq[ ]*nobusyg[\n 0-9:]*'    
2696     ;;
2697
2698   */*-loongson.patch)
2699     defsnc 'static[ ]const[ ]u16[ ]Sbox\[256\][ ]=' drivers/net/wireless/rtl8187b/ieee80211/ieee80211_crypt_tkip.c
2700     defsnc 'u16[ ]rtl8225bcd_rxgain\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225.c
2701     defsnc 'u8[ ]rtl8225_tx_power_cck\(_ch14\)\?\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225.c
2702     defsnc 'u8[ ]rtl8225_agc\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225.c
2703     defsnc 'static[ ]u32[ ]MAC_REG_TABLE\[\]\[3\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225z2.c
2704     defsnc 'static[ ]u8[ ][ ]*ZEBRA_AGC\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225z2.c
2705     defsnc 'static[ ]u32[ ]ZEBRA_RF_RX_GAIN_TABLE\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225z2.c
2706     defsnc 'u8[ ]ZEBRA2_CCK_OFDM_GAIN_SETTING\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225z2.c
2707     defsnc 'u16[ ]rtl8225z2_rxgain\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225z2.c
2708     defsnc 'u8[ ]rtl8225z2_tx_power_cck\(_ch14\)\?\[\]=' drivers/net/wireless/rtl8187b/r8180_rtl8225z2.c
2709     defsnc 'static[ ]struct[ ]vesa_mode_table[ ]vesa_mode\[\][ ]=' drivers/staging/sm7xx/smtcfb.c
2710     defsnc 'struct[ ]ModeInit[ ]VGAMode\[\][ ]=' drivers/staging/sm7xx/smtcfb.h
2711     ;;
2712
2713   */patch*-2.6.34-rc*)
2714     # New in 2.6.34, should be duplicated in the main pattern set.
2715     blobname 'cxgb4[/]t4fw\.bin' drivers/net/cxgb4/cxgb4_main.c
2716     defsnc '[   ]static[ ]const[ ]unsigned[ ]int[ ]reg_ranges\[\][ ]=' drivers/net/cxgb4/cxgb4_main.c
2717     defsnc '[   ]static[ ]const[ ]unsigned[ ]int[ ]avg_pkts\[NCCTRL_WIN\][ ]=' drivers/net/cxgb4/t4_hw.c
2718     # above in -rc5
2719     defsnc 'static[ ]u32[ ]epll_div\[\]\[5\][ ]=' arch/arm/mach-s5p6440/clock.c
2720     accept '[   ]aru->firmware[ ]=[ ]fw[;]' drivers/net/wireless/ath/ar9170/usb.c
2721     accept '[   ]err[ ]=[ ]request_firmware[(][&]fw_entry,[ ]["]broadsheet\.wbf["],[ ]dev[)][;]' drivers/video/broadsheetfb.c
2722     # above in -rc2, below in -rc1
2723     accept '#[ ]\(Usage:[ ]cxacru-cf\.py[ ][<]\|Warning:\|Note:[ ]support[ ]for\)[ ]cxacru-cf\.bin' 'Documentation/networking/cxacru\(-cf\.py\|\.txt\)'
2724     defsnc 'static[ ]struct[ ]cdce_reg[ ]cdce_y1_27000\[\][ ]=' arch/arm/mach-davinci/cdce949.c
2725     defsnc '[   ]u16[ ]map\[\][ ]=' drivers/hwmon/asc7621.c
2726     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]az6027_properties[ ]=[ ][{][\n]\([    ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/az6027.c
2727     blobname 'dvb-usb-az6027-03\.fw' drivers/media/dvb/dvb-usb/az6027.c
2728     accept '[   ]p7500->firmware[ ]=' drivers/media/dvb/dvb-usb/dw2102.c
2729     blobname 'dvb-usb-p7500\.fw' drivers/media/dvb/dvb-usb/dw2102.c
2730     defsnc 'static[ ]u8[ ]ITUDecoderSetup\[4\]\[16\][ ]=' drivers/media/dvb/ngene/ngene-core.c
2731     blobname 'ngene_1[567]\.fw' drivers/media/dvb/ngene/ngene-core.c
2732     blobname 'sms1xxx-hcw-55xxx-i\?sdbt-02\.fw' drivers/media/dvb/siano/sms-cards.c
2733     defsnc 'static[ ]u8[ ]samsung_smt_7020_inittab\[\][ ]=' drivers/media/video/cx88/cx88-dvb.c
2734     defsnc 'static[ ]const[ ]u8[ ]\(bridge\|sensor\)_init\(_2\)\?\[\]\[2\][ ]=' drivers/media/video/gspca/ov534_9.c
2735     defsnc 'static[ ]const[ ]u8[ ]bridge_start_\([qs]\?v\|x\)ga\[\]\[2\][ ]=' drivers/media/video/gspca/ov534_9.c
2736     defsnc '[   ]struct[ ]init_command[ ]\(spy\|cif\|ms350\|genius\|vivitar\)_start_commands\[\][ ]=' drivers/media/video/gspca/sn9c2028.c
2737     defsnc 'static[ ]const[ ]u8[ ]n4_lt168g\[\][ ]=' drivers/media/video/gspca/t613.c
2738     initc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]\(__\)\?u8[ ]\(mi\(0360\|13[12]0\)\|po\(1200\|3130\)\|hv7131r\|ov76[67]0\)_\(\(soc\)\?_\?[iI]nit\(Q\?V\|SX\)GA\(_\(JPG\|data\)\)\?\|rundata\)\[\]\[4\][ ]=\([ ][{][*][/][;]\)\?' drivers/media/video/gspca/vc032x.c
2739     defsnc '[   ]static[ ]const[ ]u8[ ]gamma_tb\[6\]\[16\][ ]=' drivers/media/video/gspca/zc3xx.c
2740     blobname 'tlg2300_firmware\.bin' drivers/media/video/tlg2300/pd-main.c
2741     defsnc '[   ]u8[ ]pattern\[42\][ ]=' drivers/net/ksz884x.c
2742     defsnc '\(static[ ]\)\?const[ ]u8[ ]b43_ntab_framelookup\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2743     defsnc 'const[ ]u32[ ]\(b43_ntab_tx_gain_rev\(0_1_2\|3plus_2ghz\|\([34]\|5plus\)_5ghz\)\|txpwrctrl_tx_gain_ipa\(_\(rev\)\?[56]g\?\)\?\)\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2744     defsnc 'const[ ]u16[ ]tbl_iqcal_gainparams\[2\]\[9\]\[8\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2745     defsnc 'const[ ]struct[ ]nphy_txiqcal_ladder[ ]ladder_\(lo\|iq\)\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2746     defsnc 'const[ ]u16[ ]loscale\[\][ ]=' drivers/net/wireless/b43/tables_nphy.c
2747     blobname 'isl38\(86\|87\|90\)\(pci\|usb\(_bare\)\?\)\?' 'drivers/net/wireless/p54/p54\(pci\.c\|usb\.[ch]\)'
2748     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]struct[ ]conf_drv_settings[ ]default_conf[ ]=[ ][{][*][/][;]' drivers/net/wireless/wl12xx/wl1271_main.c
2749     defsnc '[   ][}][ ]grtpkts\[\][ ]=' drivers/staging/mimio/mimio.c
2750     blobname 'rt\(28[67]0\|30[79][01]\)\.bin' drivers/staging/rt2860/common/rtmp_mcu.c
2751     accept '[   ]adapter->firmware[ ]=[ ]fw[;]' drivers/staging/rt2860/common/rtmp_mcu.c
2752     blob '[/][*][^*]*\([*]\+[^/*][^*]*\)*[*]*RTL8192SU[/]rtl1892swf\.bin[^*]*\([*]\+[^/*][^*]*\)*[*]\+[/]' drivers/staging/rtl8192su/r8192S_firmware.c
2753     accept 'MODULE_FIRMWARE[(]["]keyspan_pda[/]\(keyspan_pda\|xircom_pgs\)\.fw["][)][;]' drivers/usb/serial/keyspan_pda.c
2754     # It's not clear that wm2000_anc.bin is pure data.
2755     # Check with developer, clean up for now.
2756     blobname 'wm2000_anc\.bin' sound/soc/codecs/wm2000.c
2757     blob '[ ][*][ ]The[ ]download[ ]image[ ]for[ ]the[ ]WM2000[^*]*\([*]\+[^/*][^*]*\)*[*]*[<][ ]file[^*\n]*[\n][ ][*][/]' sound/soc/codecs/wm2000.c
2758     # accept '[ ][*][ ].wm2000_anc\.bin.[ ]by[ ]default' sound/soc/codecs/wm2000.c
2759     # accept '[ ][*][   ]*[<][ ]file[ ]\+[>]wm2000_anc\.bin' sound/soc/codecs/wm2000.c
2760     # accept '[ ]filename[ ]=[ ]["]wm2000_anc\.bin["][;]' sound/soc/codecs/wm2000.c
2761     defsnc '[}][ ]\(clk_sys_ratios\|bclk_divs\)\[\][ ]=' 'sound/soc/wm890[34]\.c'
2762     defsnc '[}][ ]clock_cfgs\[\][ ]=' sound/soc/codecs/wm8955.c
2763     blobname 'siu_spb\.bin' sound/soc/sh/siu_dai.c
2764     defsnc 'static[ ]const[ ]u8[ ]poxxxx_init\(_common\|Q\?VGA\|_end_1\)\[\]\[4\][ ]=' drivers/media/video/gspca/vc032x.c
2765     defsnc 'crb_128M_2M_map\[64\][ ]__cacheline_aligned_in_smp[ ]=' 'drivers/net/\(netxen/netxen_nic_hw.c\|qlcnic/qlcnic_hw.c\)'
2766     # Pattern present prior to 2.6.34, or already adjusted for 2.6.34 in
2767     # the main pattern set.
2768     accept '[ ][ ][ ]Bit[ 0-7]*' Documentation/input/sentelic.txt
2769     accept 'The[ ]hd-audio[ ]driver[ ]reads[ ]the[ ]file[ ]via[ ]request_firmware[(][)]\.' Documentation/sound/alsa/HD-Audio.txt
2770     accept '[   ]\.section[ ]__ex_table,["]a["]'"$sepx$blobpat*" arch/powerpc/lib/copyuser_64.S
2771     defsnc 'static[ ]const[ ]u32[ ]camellia_sp0222\[256\][ ]=' crypto/camellia.c
2772     defsnc 'static[ ]const[ ]u32[ ]camellia_sp1110\[256\][ ]=' crypto/camellia.c
2773     defsnc 'static[ ]const[ ]u32[ ]camellia_sp3033\[256\][ ]=' crypto/camellia.c
2774     defsnc 'static[ ]const[ ]u32[ ]camellia_sp4404\[256\][ ]=' crypto/camellia.c
2775     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]__u8[ ]\(start\|page3\)_7302\[\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/pac7302.c
2776     defsnc 'static[ ]const[ ]__u8[ ]pas202_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/sonixb.c
2777     defsnc 'static[ ]const[ ]u8[ ]\(adcm1700\|om6802\|po1030\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
2778     blob 'sub[ ]\(sp887[0x]\|tda1004\(5\|6\(lifeview\)\?\)\|av7110\|dec\(2\(00\|54\)0t\|3000s\)\|opera1\|vp7041\|dibusb\|nxt200[24]\|cx\(23\(1xx\|885\)\|18\)\|pvrusb2\|or51\(211\|132_\(qam\|vsb\)\)\|bluebird\|mpc718\|af9015\|ngene\)[ ]*[{]\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]\([\n]\+sub[ ]\(sp887[0x]\|tda1004\(5\|6\(lifeview\)\?\)\|av7110\|dec\(2\(00\|54\)0t\|3000s\)\|opera1\|vp7041\|dibusb\|nxt200[24]\|cx\(23\(1xx\|885\)\|18\)\|pvrusb2\|or51\(211\|132_\(qam\|vsb\)\)\|bluebird\|mpc718\|af9015\|ngene\)[ ]*[{]\([\n]\+[^\n}][^\n]*\)*[\n]\+[}]\)*' Documentation/dvb/get_dvb_firmware
2779     accept '\([/][*][*][\n]\)\?[ ][*][ ]request_firmware_nowait\(:\|[ ]-\)[ ]asynchronous[ ]version[ ]of[ ]request_firmware' drivers/base/firmware_class.c
2780     blobname 'b43\(legacy\)\?\(%s\)\?[/]\(%s\|ucode\([2459]\|1[1345]\)\|pcm5\|[abn]0g[01]initvals\(5\|1[13]\)\)\.fw' 'drivers/net/wireless/b43\(legacy\)\?/main.c'
2781     blobname '\(sep[/]\)\?\(cache\|resident\)\.image\.bin' drivers/staging/sep/sep_driver.c
2782     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]u8[ ]\(mi1320\|po3130\)_initVGA_data\[\]\[4\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/sonixj.c
2783     accept '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]request_firmware_work_func' drivers/base/firmware_class.c
2784     defsnc 'static[ ]const[ ]u8[ ]\(bridge\|sensor\)_init_ov965x\(_2\)\?\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
2785     defsnc 'static[ ]const[ ]u8[ ]bridge_start_ov965x_\(\([qs]\?v\|x\)ga\|cif\)\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
2786     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]\(__u16\|struct[ ]cmd\)[ ]spca504\(_pccam600\|A_clicksmart420\)_\(init\|open\)_data\[\]\(\[3\]\)\?[ ]=[ ][{][*][/][;]' drivers/media/video/gspca/sunplus.c
2787     # above is in -rc1, below in -rc2
2788     defsnc 'static[ ]struct[ ]pinmux_cfg_reg[ ]pinmux_config_regs\[\][ ]=' 'arch/sh/kernel/cpu/sh2a/pinmux-sh7203\.c\|arch/arm/mach-shmobile/pfc-sh73[67]7\.c'
2789     defsnc 'static[ ]const[ ]u8[ ]ratio_lut\[\][ ]=' drivers/misc/tsl2550.c
2790     initnc 'static[ ]const[ ]u16[ ]count_lut\[\][ ]=' drivers/misc/tsl2550.c
2791     accept 'static[ ]int[ ]ar9170_usb_request_firmware[(]' drivers/net/wireless/ar9170/usb.c
2792     accept '[   ]\(err[ ]=\|return\)[ ]request_firmware\(_nowait\)\?[(][^\n]*["]ar9170\(-[12]\)\?\.fw["],' drivers/net/wireless/ar9170/usb.c
2793     accept '[   ]err[ ]=[ ]ar9170_usb_request_firmware[(]' drivers/net/wireless/ar9170/usb.c
2794     blobname '%s%[du]%s["],[\n  ]*name_pre,[ ]\(priv->fw_\)\?index,[ ]["]\.ucode' 'drivers/net/iwlwifi/iwl\(3945-base\|-agn\).c'
2795     accept '#include[ ]["]ixp2400_[rt]x\.ucode["]' drivers/net/ixp2000/ixpdev.c
2796     ;;
2797
2798   */patch*-2.6.33-rc*)
2799     accept 'static[ ]inline[ ]int[\n]\(maybe_\)\?reject_firmware\(_nowait\)\?[(][^{;]*[)][\n][{]\([\n]\+[^\n}][^\n]*\)*[^\n]*\([\n]\+[}]\)\?' include/linux/firmware.h
2800     accept '[   ][      ]ranges[ ]=[ ]<'"$blobpat*"'>[;]' 'arch/powerpc/boot/dts/\(mpc8572ds\|p2020ds\|katmai\)\.dts'
2801     defsnc 'static[ ]unsigned[ ]char[ ]camera_ncm03j_magic\[\][ ]=' 'arch/sh/boards/\(board-ap325rxa\.c\|mach-ap325rxa/setup\.c\)'
2802     defsnc 'static[ ]unsigned[ ]char[ ]vga_font\[cmapsz\][ ]\(BTDATA[ ]\)\?=' arch/sparc/kernel/btext.c
2803     accept '[   ][      ][      ]req_firm_rc[ ]=[ ]request_firmware_nowait[(][^;]*,[ ]["]dell_rbu["],' drivers/firmware/dell_rbu.c
2804     defsnc 'struct[ ]nv17_tv_norm_params[ ]nv17_tv_norms\[NUM_TV_NORMS\][ ]=' drivers/gpu/drm/nouveau/nv17_tv_modes.c
2805     defsnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]u16[ ]stufftab\[5[ ][*][ ]256\][ ]=[ ][{]\([*][/][;]\)\?[\n]' drivers/isdn/gigaset/isocdata.c
2806     defsnc 'static[ ]const[ ]__u8[ ]\(start\|page[34]\)_73\(02\|11\)\[\][ ]=' 'drivers/media/video/gspca/pac73\(02\|11\)\.c'
2807     defsnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals\(_3070\)\?\[\][ ]=' drivers/net/wireless/prism54/islpci_dev.c
2808     defsnc 'static[ ]uint32[ ][FR]Sb\[256\][ ]=' 'drivers/staging/rt28[67]0/common/\(md5\|cmm_aes\)\.c'
2809     defsnc 'static[ ]const[ ]u16[ ]Sbox\[256\][ ]=' # 'drivers/staging/rtl8192u/r819xU_firmware.c' and elsewhere
2810     defsnc 'u16[ ]MCS_DATA_RATE\[2\]\[2\]\[77\][ ]=' 'drivers/staging/\(rtl8192su/ieee80211/rtl819x_HTProc\.c\|rtl8192u/r819xU_firmware\.c\)'
2811     defsnc '\(static[ ]\)\?u32[ ]Rtl8190PciE\?\(AGCTAB_\|PHY_REG\(_1T2R\)\?\|Radio[ABCD]_\)Array\[\(AGCTAB_\|PHY_REG\(_1T2R\)\?\|Radio[ABCD]_\)ArrayLength\][ ]=' 'drivers/staging/\(rtl8192e/r819xE_phy\.c\|rtl8192u/r819xU_firmware_img.c\)'
2812     defsnc 'u32[ ]Rtl8192Usb\(PHY_REG\(_1T2R\)\?\|\(Radio[ABCD]\|MACPHY\|AGCTAB\)_\)Array\(_PG\)\?\[\][ ]=' drivers/staging/rtl8192su/rtl819xU_firmware_img.c
2813     defsnc '[ ][ ]static[ ]const[ ]unsigned[ ]char[ ]asso_values\[\][ ]=' scripts/genksyms/keywords.c_shipped
2814     accept '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]request_firmware_work_func[(]void[ ][*]arg[)][*][/][;][\n]\([^\n]*[\n]\)\+\([        ]ret[ ]=[ ]_request_firmware[(]\|request_firmware_nowait[(]\)\?' drivers/base/firmware_class.c
2815     accept '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]struct[ ]dvb_usb_device_properties[ ]af9015_properties\(\[\]\)\?[ ]=[ ][{][*][/][;][\n][    ][      ]\.firmware[ ]=[ ]' drivers/media/dvb/dvb-usb/af9015.c
2816     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]u8[ ]bridge_start_ov965x\[\]\[2\][ ]=[ ][{][*][/][;][\n]' drivers/media/video/gspca/ov534.c
2817     defsnc 'static[ ]const[ ]u8[ ]bridge_start_ov965x_\(\([qs]\?v\|x\)ga\|cif\)\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
2818     defsnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]\(const[ ]\)\?\(__\)\?u8[ ]\(mt9v111\|sp80708\|hv7131r\|mi0360\|mo4000\|ov76\([36]0\|48\)\|om6802\|po1030\)_sensor_init\[\]\[8\][ ]=[ ][{]\([*][/][;]\)\?[\n]' drivers/media/video/gspca/sonixj.c
2819     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]\(const[ ]\)\?u32[ ]ar\(5416\|9280\)\(Modes\(_fast_clock\)\?\|Common\|BB_RfGain\|Bank6\(TPC\)\?\|Addac\)\(_91[06]0\(1_1\)\?\|_9280\(_2\)\?\)\?\[\]\[[236]\][ ]=[ ][{][*][/][;][\n]' drivers/net/wireless/ath9k/initvals.h
2820     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]u_int32_t[ ]ar9271\(Common\|Modes\)_9271_1_0\[\]\[[26]\][ ]=[ ][{][*][/][;][\n]' drivers/net/wireless/ath9k/initvals.h
2821     defsnc '\(U\(INT\|CHAR\)\|u\(32\|8\)\)[ ]\(Tkip_Sbox_\(Lower\|Upper\)\|SboxTable\)\[256\][ ]=' 'drivers/staging/rt\(28[67]0\|3070\)/common/\(rtmp\|cmm\)_tkip\.c'
2822     defsnc '\(RTMP_RF_REGS\|struct[ ]rt_rtmp_rf_regs\)[ ]RF2850RegTable\[\][ ]=' 'drivers/staging/rt28[67]0/common/\(mlme\.c\|cmm_asic\.c\)'
2823     defsnc '\(FREQUENCY_ITEM\|struct[ ]rt_frequency_item\)[ ]FreqItems3020\[\][ ]=' 'drivers/staging/rt28[67]0/common/\(mlme\.c\|cmm_asic\.c\)'
2824     defsnc '\(UINT\|u32\)[ ]FCSTAB_32\[256\][ ]=' 'drivers/staging/rt\(28[67]0\|3070\)/common/\(rtmp\|cmm\)_wep\.c'
2825     defsnc '\(UCHAR\|u8\)[ ]RateSwitchTable\(11B\?G\?\(N[123]S\(ForABand\)\?\)\?\)\?\[\][ ]=' 'drivers/staging/rt28[67]0/common/mlme\.c'
2826     defsnc '\(UCHAR\|u8\)[      ]*ZeroSsid\[32\][ ]=' 'drivers/staging/rt28[67]0/common/mlme\.c'
2827     defsnc '\(CH_FREQ_MAP\|struct[ ]rt_ch_freq_map\)[ ]CH_HZ_ID_MAP\[\][ ]\?=' 'drivers/staging/\(rt2860\|rt3090\)/common/rt_channel\.c'
2828     defsnc '\(DOT11_REGULATORY_INFORMATION\|struct[ ]rt_dot11_regulatory_information\)[ ]\(USA\|Europe\|Japan\)RegulatoryInfo\[\][ ]=' 'drivers/staging/\(rt3090\|rt2860\)/common/spectrum\.c'
2829     defsnc '\([ ][ ][ ][ ]\|[   ]\)u_int32_t[ ]ralinkrate\[256\][ ]=' 'drivers/staging/rt\(28[67]0\|3070\)/rt_linux\.c'
2830     defsnc '\(static[ ]uint32_t\|[}]\)[ ]nv04_graph_ctx_regs[ ]\?\[\][ ]=' drivers/char/drm/nv04_graph.c
2831     defsnc 'static[ ]int[ ]nv10_graph_ctx_regs[ ]\?\[\][ ]=' drivers/char/drm/nv10_graph.c
2832     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]\(dw\(210[24]\|3101\)\|s6[3x]0\)_properties[ ]=[ ][{][\n]\([  ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*[   ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/dw2102.c
2833     defsnc 'static[ ]int[ ]zoom2_batt_table\[\][ ]=' arch/arm/mach-omap2/board-zoom2.c
2834     defsnc 'static[ ]u8[ ]af9015_ir_table_\(leadtek\|twinhan\|a_link\|msi\|mygictv\|kworld\)\[\][ ]=' drivers/media/dvb/dvb-usb/af9015.h
2835     defsnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]struct[ ]usb_action[ ]\(cs2102\|hdcs2020xx\|icm105axx\|ov7630c\|pb0330[3x]x\)_Initial\(Scale\)\?\[\][ ]=[ ][{]\([*][/][;]\)\?[\n]' drivers/media/video/gspca/zc3xx.c
2836     defsnc '[   ]static[ ]const[ ]u8[ ]log10\[\][ ]=' drivers/net/wireless/zd1211rw/zd_chip.c
2837     defsnc '[ ][ ][ ][ ]static[ ]UINT32[ ]MD5Table\[64\][ ]=' 'drivers/staging/rt28[67]0/common/md5\.c'
2838     defsnc 'ULONG[ ][ ]*BIT32\[\][ ]=' 'drivers/staging/rt28[67]0/common/rtmp_init\.c'
2839     defsnc 'static[ ]UINT8[ ]WPS_DH_\([PRX]\|RRModP\)_VALUE\[1\(9[23]\|84\)\][ ]=' drivers/staging/rt3090/common/crypt_biginteger.c
2840     defsnc 'static[ ]const[ ]UINT32[ ]SHA256_K\[64\][ ]=' drivers/staging/rt3090/common/crpt_sha2.c
2841     accept '[ * ]*0[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]1[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]2[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]3[\n][ *        ]*0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1' 'net/\(netfilter\|ipv4\)/ipvs/ip_vs_sync\.c\|net/sctp/sm_make_chunk\.c\|include/linux/scpt\.h\|drivers/staging/rt3090/common/igmp_snoop\.c'
2842     defsnc 'const[ ]unsigned[ ]short[ ]ccitt_16Table\[\][ ]=' 'drivers/staging/rt\(28[67]0\|3090\)/common/rtmp_init\.c'
2843     defsnc 'static[ ]const[ ]USHORT[ ]Sbox\[256\][ ]=' drivers/staging/rt3090/sta/rtmp_ckipmic.c
2844     accept '[   ]len[ ]=[ ]mod_firmware_load[(]fn,[ ][&]data[)][;][\n][ ]if[ ][^{]*[ ][{][\n][  ][       ]*printk[(]KERN_ERR[ ]["]sscape:' sound/oss/sscape.c
2845     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]wm_vol\[256\][ ]=' 'sound/pci/ice1712/\(phase\|aureon\)\.c'
2846     accept '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?\(static[ ]inline[ ]\)\?int[ ]request_firmware\(_nowait\)\?[(]\(const[ ]struct[ ]firmware[ ][*][*]\|[\n][      ]struct[ ]module[ ][*]\)' include/linux/firmware.h
2847     blobname 'isl38\(77\|86\|90\)' drivers/net/wireless/prism54/islpci_dev.c
2848     accept '[ ]*#[ ]*define[ ]\(STA_PROFILE\|CARD_INFO\)_PATH[  ]*["][/]etc[/]Wireless[/]RT\(28[67]\|307\)0STA[/]RT\(28[67]\|307\)0STA\(Card\)\?\.dat["]' 'drivers/staging/rt\(28[67]0\|3070\)/rt_linux\.h'
2849     accept '#include[ ]["]rf\.h["][\n]#include[ ]["]firmware\.h["]' drivers/staging/vt6656/main_usb.c
2850     blob '#include[     ]*["]\(\.\.[/]\(\.\.[/]rt30[79]0[/]\)\?\)\?firmware\.h["]' 'drivers/staging/rt\(28[67]\|309\)0/common/rtmp_\(init\|mcu\)\.c'
2851     blobna 'Derived[ ]from[ ]proprietary[ ]unpublished[ ]source[ ]code' drivers/net/tg3.c
2852     blobname 'atmel_at76c50\(2\([de]\|_3com\)\?\|4a\?\(_2958\)\?\|6\)\(\.bin\)\?' drivers/net/wireless/atmel.c
2853     blobna '\(pFirmwareImage[ ]=\([ ]FirmwareImage\(_\(28[67]\|30[79]\)0\)\?\|[\n       ]*[(]\(PUCHAR\|u8[ ][*]\)[)][&][\n      ]*FirmwareImage\(_\(28\|30\)70\)\?\[FIRMWAREIMAGE\(V[12]\)\?_LENGTH\]\)\|File[lL]ength[ ]=[ ]\(sizeof[(]FirmwareImage[)]\|FIRMWAREIMAGE\(V[12]\|_MAX\)\?_LENGTH\)\)[;]\([\n      ]*\(pFirmwareImage[ ]=\([ ]FirmwareImage\(_\(28[67]\|30[79]\)0\)\?\|[\n        ]*[(]\(PUCHAR\|u8[ ][*]\)[)][&][\n      ]*FirmwareImage\(_\(28\|30\)70\)\?\[FIRMWAREIMAGE\(V[12]\)\?_LENGTH\]\)\|File[lL]ength[ ]=[ ]\(sizeof[(]FirmwareImage[)]\|FIRMWAREIMAGE\(V[12]\|_MAX\)\?_LENGTH\)\)[;]\)*' 'drivers/staging/rt\(28[67]0\|30[79]0\)/common/rtmp_init\.c'
2854     blobname '\(nx\(romimg\|3fw\(ct\|mn\)\)\|phanfw\)\.bin' 'drivers/net/netxen/netxen_nic\(_\(hw\|init\)\.c\|\.h\)'
2855     # The above are covered by the main Linux patterns.  The patterns
2856     # below are to be kept in sync in the 2.6.33 block within the main
2857     # Linux patterns, until 2.6.33 is released.
2858     accept '[ ]*just[ ]run[ ]["]cat[ ][/]sys[/]firmware[/]acpi[/]tables[/]DSDT[ ]>[ ][/]tmp[/]dsdt[.]dat["]' Documentation/acpi/method-customizing.txt
2859     accept '[ ]*b[)][ ]disassemble[ ]the[ ]table[ ]by[ ]running[ ]["]iasl[ ]-d[ ]dsdt[.]dat["][.]' Documentation/acpi/method-customizing.txt
2860     accept '[ ]*x=["]7999\([ ][0-9]\+\)\+["]' Documentation/blockdev/drbd/DRBD-8.3-data-packets.svg
2861     defsnc 'static[ ]int[ ]zoom_batt_table\[\][ ]=' arch/arm/mach-omap2/board-zoom-peripherals.c
2862     defsnc 'static[ ]u16[ ]x[48]_vectors\[\][ ]=' drivers/edac/amd64_edac.c
2863     defsnc 'static[ ]const[ ]u16[ ]\(y\|uv\)_static_hcoeffs\[N_HORIZ_\(Y\|UV\)_TAPS[ ][*][ ]N_PHASES\][ ]=' drivers/gpu/drm/i915/intel_overlay.c
2864     accept '[   ]\.download_firmware[ ]=[ ]ec168_download_firmware,[\n][        ]\.firmware[ ]=[ ]' drivers/media/dvb/dvb-usb/ec168.c
2865     blobname 'dvb-usb-ec168\.fw' drivers/media/dvb/dvb-usb/ec168.c
2866     defsnc 'static[ ]const[ ]u16[ ]dib0090_defaults\[\][ ]=' drivers/media/dvb/frontends/dib0090.c
2867     defsnc 'static[ ]const[ ]struct[ ]dib0090_pll[ ]dib0090_pll_table\[\][ ]=' drivers/media/dvb/frontends/dib0090.c
2868     blobname 'dvb-fe-ds3000\.fw' drivers/media/dvb/frontends/ds3000.c
2869     blob '[/][*][ ]\(as[ ]of[ ][^\n]*[ ]current[ ]DS3000[ ]firmware\|DS3000[ ]FW\)[^/]*[*][/]\([\n][/][*]\([ ]\(as[ ]of[ ][^\n]*[ ]current[ ]DS3000[ ]firmware\|DS3000[ ]FW\)[^/]*\|[(]DEBLOBBED[)]\)[*][/]\)*' drivers/media/dvb/frontends/ds3000.c
2870     defsnc 'static[ ]u8[ ]ds3000_dvbs2\?_init_tab\[\][ ]=' drivers/media/dvb/frontends/ds3000.c
2871     defsnc '[   ]static[ ]const[ ]u16[ ]dvbs2_snr_tab\[\][ ]=' drivers/media/dvb/frontends/ds3000.c
2872     defsnc 'static[ ]const[ ]struct[ ]cnr[ ]cnr_tab\[\][ ]=' drivers/media/dvb/frontends/mb86a16.c
2873     defsnc 'u8[ ]lgtdqcs001f_inittab\[\][ ]=' drivers/media/dvb/mantis/mantis_vp1033.c
2874     defsnc 'static[ ]const[ ]struct[ ]ov9640_reg[ ]ov9640_regs_dflt\[\][ ]=' drivers/media/video/ov9640.c
2875     defsnc 'const[ ]static[ ]struct[ ]rj54n1_reg_val[ ]bank_[4578]\[\][ ]=' drivers/media/video/rj54n1cb0c.c
2876     blob '#define[ ]_FW_NAME[(]api[)][ ]DRV_NAME[ ]["][.]["][ ]#api[ ]["]\.fw["]' drivers/media/video/iwmc3200top.h
2877     defsnc 'static[ ]struct[ ]nand_ecclayout[ ]nandv2_hw_eccoob_largepage[ ]=' drivers/mtd/nand/mxc_nand.c
2878     blob '#define[ ]FW_FILE_VERSION\([  ]*[\\][\n][     ]__stringify[(]BCM_5710_FW_\(MAJOR\|MINOR\|REVISION\|ENGINEERING\)_VERSION[)]\([ ]["][.]["]\)\?\)\+' drivers/net/bnx2x_main.c
2879     blobname 'bnx2x-e1h\?-["][ ]FW_FILE_VERSION[ ]["]\.fw' drivers/net/bnx2x_main.c
2880     blob '#define[ ]FW_VERSION\([ ]__stringify[(]FW_VERSION_\(MAJOR\|MINOR\|MICRO\)[)]\([ ]["][.]["]\)\?\([     ]*[\\][\n]\)\?\)\+' drivers/net/cxgb3/cxgb3_main.c
2881     blobname 'cxgb3[/]t3fw-["][ ]FW_VERSION[ ]["]\.bin' drivers/net/cxgb3/cxgb3_main.c
2882     blob '#define[ ]TPSRAM_VERSION\([ ]__stringify[(]TP_VERSION_\(MAJOR\|MINOR\|MICRO\)[)]\([ ]["][.]["]\)\?\([ ]*[\\][\n]\)\?\)\+' drivers/net/cxgb3/cxgb3_main.c
2883     blobname 'cxgb3[/]t3\(%c\|[bc]\)_psram-["][ ]TPSRAM_VERSION[ ]["]\.bin' drivers/net/cxgb3/cxgb3_main.c
2884     defsnc '[   ]static[ ]const[ ]u8[ ]rsshash\[40\][ ]=' drivers/net/igb/igb_main.c
2885     defsnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_302x\[\][ ]=' drivers/net/wireless/rt2x00/rt2800lib.c
2886     defsnc 'static[ ]struct[ ]conf_drv_settings[ ]default_conf[ ]=' drivers/net/wireless/wl12xx/wl1271_main.c
2887     defsnc 'static[ ]u16[ ]bios_to_linux_keycode\[256\][ ]=' drivers/platform/x86/dell-wmi.c
2888     accept '[   ]err[ ]=[ ]request_firmware[(][&]pm8001_ha->fw_image,' drivers/scsi/pm8001/pm8001_ctl.c
2889     defsnc 'static[ ]unsigned[ ]char[ ]vpdb0_data\[\][ ]=' drivers/scsi/scsi_debug.c
2890     defsnc 'static[ ]struct[ ]vesa_mode_table[ ]vesa_mode\[\][ ]=' drivers/staging/sm7xx/smtcfb.c
2891     defsnc 'struct[ ]ModeInit[ ]VGAMode\[\][ ]=' drivers/staging/sm7xx/smtcfb.h
2892     blob 'static[ ]const[ ]hcf_8[ ]fw_image_[1234]_data\[\][ ]=[^;]*[;]\([ ]*[/][*][ ]fw_image_[1234]_data[ ][*][/]\)\?' 'drivers/staging/wlags49_h2/\(ap\|sta\)_h25\?\.c'
2893     blobname '[/]etc[/]agere[/]fw\.bin' drivers/staging/wlags49_h2/wl_profile.c
2894     defsnc 'static[ ]const[ ]long[ ]chan_freq_list\[\]\[MAX_CHAN_FREQ_MAP_ENTRIES\][ ]=' drivers/staging/wlags49_h2/wl_util.c
2895     blobname 'scope\.cod' 'sound/isa/\(Kconfig\|sscape\.c\)'
2896     blobname 'sndscape\.co\([?dx01234]\|%d\)' 'sound/\(isa/\(Kconfig\|sscape\.c\)\|oss/README\.OSS\)'
2897     defsnc 'static[ ]const[ ]u8[ ]\(adcm1700\|om6802\|po1030\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
2898     blobname 'ath3k-1\.fw' drivers/bluetooth/ath3k.c
2899     ;;
2900
2901   */patch*-2.6.27*|*/patch*-2.6.31.*)
2902     accept '[   ]request_firmware[(][)][ ]will[ ]hit[ ]an[ ]OOPS' drivers/media/dvb/frontends/dib7000p.c
2903     ;;
2904
2905   */patch*-2.6.30*)
2906     initnc '[}][ ]bclk_divs\[\][ ]=[ ][{]' sound/soc/codecs/wm8903.c
2907     ;;
2908
2909   */patch*-2.6.28-rc*)
2910     # new in 2.6.28
2911     accept '\(static[ ]\)\?const[ ]char[ ]\(inv\)\?parity\[256\][ ]=[ ][{][      \n01,]*[}][;]' 'Documentation/mtd/nand_ecc\.txt\|drivers/mtd/nand/nand_ecc\.c'
2912     defsnc 'static[ ]const[ ]char[ ]\(bitsperbyte\|addressbits\)\[256\][ ]=' drivers/mtd/nand/nand_ecc.c
2913     defsnc 'static[ ]struct[ ]pinmux_cfg_reg[ ]pinmux_config_regs\[\][ ]=' arch/sh/kernel/cpu/sh2a/pinmux-sh7203.c
2914     defsnc '[   ]static[ ]const[ ]u8[ ]e_keymap\[\][ ]=' drivers/hid/hid-lg.c
2915     defsnc '[   ][      ]*struct[ ]phy_reg[ ]phy_reg_init_[01]\[\][ ]=' drivers/net/r8169.c
2916     defsnc 'DEFINE_DEFAULT_PDR[(]0x0161,[ ]256,' drivers/net/wireless/hermes_dld.c
2917     defsnc 'static[ ]const[ ]int[ ]isink_cur\[\][ ]=' drivers/regulator/wm8350-regulator.c
2918     defsnc 'static[ ]const[ ]s16[ ]\(converge_speed_ipb\?\|LAMBDA_table\[4\]\)\[101\][ ]=' drivers/staging/go7007/go7007-fw.c
2919     defsnc 'static[ ]const[ ]u32[ ]addrinctab\[33\]\[2\][ ]=' drivers/staging/go7007/go7007-fw.c
2920     defsnc 'static[ ]const[ ]u8[ ]\(default_intra_quant_table\|\(val\|bits\)_[ad]c_\(lu\|chro\)minance\)\[\][ ]=' drivers/staging/go7007/go7007-fw.c
2921     defsnc 'static[ ]const[ ]int[ ]zz\[64\][ ]=' drivers/staging/go7007/go7007-fw.c
2922     defsnc '[   ]u16[ ]pack\[\][ ]=' drivers/staging/go7007/go7007-fw.c
2923     defsnc 'static[ ]u8[ ]\(initial\|channel\)_registers\[\][ ]=' 'drivers/staging/go7007/wis-\(ov7640\|saa7113\|tw2804\).c'
2924     defsnc 'u16[ ]MTO_One_Exchange_Time_Tbl_[ls]\[MTO_MAX_FRAG_TH_LEVELS\]\[MTO_MAX_DATA_RATE_LEVELS\][ ]=' drivers/staging/winbond/mto.c
2925     defsnc 'u32[ ]\(al2230_txvga_data\|w89rf242_txvga_old_mapping\)\[\]\[2\][ ]=' drivers/staging/winbond/reg.c
2926     defsnc 'static[ ]const[ ]UINT16[ ]crc16tab\[256\][ ]=' drivers/staging/wlan-ng/hfa384x.c
2927     defsnc 'static[ ]const[ ]UINT32[ ]wep_crc32_table\[256\][ ]=' drivers/staging/wlan-ng/p80211wep.c
2928     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]wm_vol\[256\][ ]=' sound/pci/ice1712/phase.c
2929     defsnc 'static[ ]const[ ]u16[ ]wm8900_reg_defaults\[WM8900_MAXREG\][ ]=' sound/soc/wm8900.c
2930     defsnc '[}][ ]\(clk_sys_ratios\|bclk_divs\)\[\][ ]=' sound/soc/wm8903.c
2931     defsnc 'static[ ]u8[ ]af9015_ir_table_\(leadtek\|twinhan\|a_link\|msi\|mygictv\|kworld\)\[\][ ]=' drivers/media/dvb/dvb-usb/af9015.h
2932     defsnc 'static[ ]struct[ ]snr_table[ ]\(qpsk\|qam\(16\|64\)\)_snr_table\[\][ ]=' drivers/media/dvb/frontends/af9013_priv.h
2933     defsnc 'static[ ]struct[ ]regdesc[ ]\(ofsm_init\|tuner_init_\(env77h11d5\|mt2060\(_2\)\?\|mxl500\(3d\|5\)\|qt1010\|mc44s803\|unknown\|tda18271\)\)\[\][ ]=' drivers/media/dvb/frontends/af9013_priv.h
2934     defsnc 'static[ ]u8[ ]stv0288_earda_inittab\[\][ ]=' drivers/media/dvb/frontends/eds1547.h
2935     defsnc 'static[ ]u8[ ]serit_sp1511lhb_inittab\[\][ ]=' drivers/media/dvb/frontends/si21xx.c
2936     defsnc 'static[ ]u8[ ]stv0288_inittab\[\][ ]=' drivers/media/dvb/frontends/stv0288.c
2937
2938     blobname 'haup-ir-blaster\.bin' drivers/input/lirc/lirc_zilog.c
2939
2940     # Non-Free license in entire file.
2941     blob 'static[ ]unsigned[ ]char[ ]xilinx_firm\(_4610\)\?\[\][ ]=[ ][{]'"$sepx$blobpat*$sepx"'[}][;]' 'drivers/staging/me4000/me4\(00\|61\)0_firmware\.h'
2942     blob 'static[ ]struct[ ]PHY_UCODE[ ]PhyUcode\[\][ ]=[^;]*[;]' drivers/staging/sxg/sxgphycode.h
2943     blob 'static[ ]unsigned[ ]char[ ]SaharaUCode\[2\]\[57972\][ ]=[^;]*[;]' drivers/staging/sxg/saharadbgdownload.h
2944     blob '#include[ ]["]saharadbgdownload\.h["]' drivers/staging/sxg/sxg.c
2945     blob 'static[ ]u8[ ]\(Mojave\|Oasis\)UCode\[2\]\[65536\][ ]=[^;]*[;]' 'drivers/staging/slicoss/\(gb\|oasis\(dbg\)\?\)download\.h'
2946     blob 'static[ ]u8[ ]\(GB\|Oasis\)RcvUCode\[2560\][ ]=[^;]*[;]' 'drivers/staging/slicoss/\(gb\|oasis\)rcvucode\.h'
2947
2948     # ok from earlier releases
2949     accept 'for[ ]i[ ]in[ ][    0-9\\\n]*[\n]do' 'Documentation/specialix.txt|Documentation/serial/specialix.txt'
2950     defsnc 'static[ ]yyconst[ ]flex_int\(16\|32\)_t[ ]yy_[^[]*\[[0-9]*\][ ]=' '.*\.lex\.c_shipped'
2951     defsnc 'static[ ]const[ ]yytype_u\?int\(8\|16\)[ ]yy[^\n []*\[\][ ]=' '.*\.lex\.c_shipped'
2952     initnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]yytype_u\?int\(8\|16\)[ ]yy[^\n []*\[\][ ]=[*][/][;]' '.*\.tab\.c_shipped'
2953     defsnc 'static[ ]struct[ ]cipher_testvec[ ]\(aes\|anubis\|bf\|camellia\|cts_mode\|des3_ede\|cast6\|salsa20_stream\|serpent\|tf\|tnepres\|xeta\|x\?tea\)\(_\(cbc\|ctr\|xts\)\)\?_\(enc\|dec\)_tv_template\[\][ ]=' 'crypto/\(tcrypt\|testmgr\).h'
2954     defsnc 'static[ ]struct[ ]comp_testvec[ ]\(deflate\|lzo\)_\(de\)\?comp_tv_template\[\][ ]=' 'crypto/\(tcrypt\|testmgr\).h'
2955     defsnc 'static[ ]struct[ ]hash_testvec[ ]\(aes_xcbc128\|crc32c\|hmac_sha2\(24\|56\)\|\(sha\|wp\)\(256\|384\|512\)\)_tv_template\[\][ ]=' 'crypto/\(tcrypt\|testmgr\).h'
2956     defsnc 'static[ ]\(const[ ]\)\?RegInitializer[ ]initData\[\][ ]__initdata[ ]=' 'drivers/ide/ali14xx\.c\|drivers/ide/legacy/ali14xx\.c'
2957     defsnc 'static[ ]const[ ]u8[ ]setup\[\][ ]=' 'drivers/ide/pci/delkin_cb\.c\|drivers/ide/delkin_cb\.c'
2958     defsnc 'static[ ]u8[ ]cvs_time_value\[\]\[XFER_UDMA_6[ ]-[ ]XFER_UDMA_0[ ][+][ ]1\][ ]=' 'drivers/ide/sis5513\.c\|drivers/ide/pci/sis5513\.c'
2959     defsnc 'static[ ]u8[ ]\(act\|ini\|rco\)_time_value\[\]\[8\][ ]=' 'drivers/ide/sis5513\.c\|drivers/ide/pci/sis5513\.c'
2960     defsnc 'static[ ]const[ ]u8[ ]speedtab[ ]\[3\]\[12\][ ]=' 'drivers/ide/umc8672\.c\|drivers/ide/legacy/umc8672\.c'
2961     initnc 'static[ ]const[ ]__u8[ ]\(effects\|gamma\)_table\[\(MAX_[A-Z]*\|[A-Z]*_MAX\)\]\[[0-9]*\][ ]=' drivers/media/video/gspca/t631.c
2962     defsnc 'static[ ]const[ ]s8[ ]\(b43\(legacy\)\?\|bcm43xx\)_tssi2dbm_[bg]_table\[\][ ]=' net/wireless/b43/phy.c
2963     accept '#define[ ]_MAP_0_32_ASCII_SEG7_NON_PRINTABLE[       ]\\[\n][        ]\(0,\)\+$' 'drivers/input/misc/map_to_7segment\.h\|include/linux/map_to_7segment\.h'
2964     accept '[ * ]*0[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]1[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]2[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]3[\n][ *        ]*0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1' 'net/\(netfilter\|ipv4\)/ipvs/ip_vs_sync\.c\|net/sctp/sm_make_chunk\.c\|include/linux/scpt\.h\|drivers/staging/rt3090/common/igmp_snoop\.c'
2965     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]wm_vol\[256\][ ]=' sound/pci/ice1712/phase.c
2966     defsnc 'static[ ]const[ ]char[ ]zr360[56]0_dht\[0x1a4\][ ]=' 'drivers/media/video/zr36060\.c\|drivers/media/video/zoran/zr36060\.c'
2967     defsnc 'static[ ]const[ ]char[ ]zr360[56]0_dqt\[0x86\][ ]=' 'drivers/media/video/zr36060\.c\|drivers/media/video/zoran/zr36060\.c'
2968
2969     # These are removed in 2.6.28, they're here so --reverse-patch tests pass.
2970     defsnc 'static[ ]unsigned[ ]char[ ]irq_xlate\[32\][ ]=' arch/sparc/kernel/sun4m_irq.c
2971     defsnc 'static[ ]int[ ]logitech_expanded_keymap\[LOGITECH_EXPANDED_KEYMAP_SIZE\][ ]=' drivers/hid/hid-input.c
2972     initc '[    ]static[ ]const[ ]__u8[ ]\(read_indexs\|n\(set\)\?[0-9]*\|missing\)\[[0-9x]*\][ ]=' drivers/media/video/gspca/t613.c
2973     defsnc 'static[ ]const[ ]u_char[ ]nand_ecc_precalc_table\[\][ ]=' drivers/mtd/nand/nand_ecc.c
2974     oprepline '#define[ ]AR5K_RATES_\(11[ABG]\|TURBO\|XR\)[ ]' drivers/net/wireless/ath5k/ath5k.h
2975     defsnc 'static[ ]const[ ]struct[ ]ath_hal[ ]ar5416hal[ ]=' drivers/net/wireless/ath9k/hw.c
2976     defsnc 'const[ ]unsigned[ ]char[ ]INIT_2\[127\][ ]=' drivers/video/omap/lcd_sx1.c
2977
2978     initc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]__u8[ ]ov7630_sensor_init\[\]\[8\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/sonixj.c
2979     ;;
2980
2981   */patch*-2.6.27-rc* | */patch*-2.6.26-git* | */git-linus.diff)
2982     accept '[   ]\.section[ ]__ex_table,["]a["]'"$sepx$blobpat*" 'arch/x86/lib/copy_user_\(nocache_\)\?64.S'
2983     initnc 'static[ ]struct[ ]cipher_testvec[ ]des3_ede_cbc_\(enc\|dec\)_tv_template\[\][ ]=' crypto/tcrypt.h
2984     accept 'desc_config1:[\n][  ]\.byte[ ]0x09,[ ]0x02'"$sepx$blobpat*" 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
2985     accept 'string_mfg:[\n]\?\([;]\?[   ]\.byte[^\n]*[\n]\)\+string_mfg_end:' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
2986     accept 'string_product:[\n]\?\([;]\?[       ]\.byte[^\n]*[\n]\)\+string_product_end:' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
2987     accept ':03000000020200F9[\n]:040023000205\(9B0037\|5F0073\)[\n]\(:050030000000000000CB[\n]\|:0400430002010000B6[\n]\)*'"$sepx$blobpat*"'[\n]:\(0E06E0006400670065007400060334003700F4\|0606A000060334003700E0\)[\n]:00000001FF[\n]' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).HEX'
2988     accept ':100000000C004000000000000000000000000000A4[\n]'"$sepx$blobpat*"'[\n][/][*][ ]DSP56001[ ]bootstrap[ ]code[ ][*][/]' firmware/dsp56k/bootstrap.bin.ihex
2989     initnc 'static[ ]const[ ]u16[ ]uda1380_reg\[UDA1380_CACHEREGNUM\][ ]=' sound/soc/codecs/uda1380.c
2990     initnc 'static[ ]const[ ]u16[ ]wm8510_reg\[WM8510_CACHEREGNUM\][ ]=' sound/soc/codecs/wm8510.c
2991     initnc 'static[ ]const[ ]unsigned[ ]short[ ]atkbd_set[23]_keycode\[512\][ ]=' drivers/input/keyboard/atkbd.c
2992     initnc 'static[ ]const[ ]unsigned[ ]short[ ]atkbd_unxlate_table\[128\][ ]=' drivers/input/keyboard/atkbd.c
2993     initnc 'static[ ]const[ ]unsigned[ ]char[ ]usb_kbd_keycode\[256\][ ]=' drivers/hid/usbhid/usbkbd.c
2994     initnc '[   ][      ]u8[ ]buf,[ ]bufs\[\][ ]=' drivers/media/dvb/dvb-usb/cxusb.c
2995     initnc 'static[ ]struct[ ]dvb_pll_desc[ ][^\n]*[ ]=' drivers/media/dvb/frontends/dvb-pll.c
2996     initnc '[   ]static[ ]int[ ]sysdiv_to_div_x_2\[\][ ]=' arch/powerpc/platforms/512x/clock.c
2997     defsnc 'static[ ]const[ ]__u8[ ]cx_inits_\(176\|320\|352\|640\)\[\][ ]=' drivers/media/video/gspca/conex.c
2998     defsnc 'static[ ]const[ ]__u8[ ]cx_jpeg_init\[\]\[8\][ ]=' drivers/media/video/gspca/conex.c
2999     defsnc 'static[ ]const[ ]__u8[ ]cxjpeg_\(640\|352\|320\|176\|qtable\)\[\]\[8\][ ]=' drivers/media/video/gspca/conex.c
3000     initnc 'static[ ]const[ ]unsigned[ ]char[ ]quant\[\]\[0x88\][ ]=' drivers/media/video/gspca/jpeg.h
3001     initnc 'static[ ]unsigned[ ]char[ ]huffman\[\][ ]=' drivers/media/video/gspca/jpeg.h
3002     initc '[    ]\?static[ ]const[ ]struct[ ]ov_i2c_regvals[ ]norm_76[1247]0\[\][ ]=' drivers/media/video/gspca/ov519.c
3003     initnc 'static[ ]const[ ]__u8[ ]pac207_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/pac207.c
3004     initnc 'static[ ]const[ ]__u8[ ]pac7311_jpeg_header\[\][ ]=' drivers/media/video/gspca/pac7311.c
3005     defsnc 'static[ ]const[ ]__u8[ ]\(start\|page[34]\)_73\(02\|11\)\[\][ ]=' drivers/media/video/gspca/pac7311.c
3006     initnc 'static[ ]const[ ]__u8[ ]init\(Hv7131\|Ov\(6650\|7630\(_3\)\?\)\|Pas\(106\|202\)\|Tas51[13]0\)\[\][ ]=' drivers/media/video/gspca/sonixb.c
3007     initnc 'static[ ]const[ ]__u8[ ]\(hv7131\|ov\(6650\|7630\(_3\)\?\)\|pas\(106\|202\)\|tas51[13]0\)_sensor_init\(_com\)\?\[\]\[8\][ ]=' drivers/media/video/gspca/sonixb.c
3008     defsnc 'static[ ]\(const[ ]\)\?__u8[ ]\(hv7131r\|mi0360\|mo4000\|ov76\([36]0\|48\)\|om6802\)_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
3009     initnc 'static[ ]const[ ]__u8[ ]qtable4\[\][ ]=' drivers/media/video/gspca/sonixj.c
3010     initnc 'static[ ]const[ ]__u16[ ]\(spca500_visual\|Clicksmart510\)_defaults\[\]\[3\][ ]=' drivers/media/video/gspca/spca500.c
3011     initnc 'static[ ]const[ ]__u8[ ]qtable_\(creative_pccam\|kodak_ez200\|pocketdv\)\[2\]\[64\][ ]=' drivers/media/video/gspca/spca500.c
3012     initnc 'static[ ]const[ ]__u16[ ]spca501c\?_\(\(3com\|arowana\|mysterious\)_\)\?\(init\|open\)_data\[\]\[3\][ ]=' drivers/media/video/gspca/spca501.c
3013     defsnc 'static[ ]const[ ]\(__u16\|u8\)[ ]spca505b\?_\(init\|open\)_data\(_ccd\)\?\[\]\[3\][ ]=' drivers/media/video/gspca/spca505.c
3014     initnc 'static[ ]const[ ]__u16[ ]spca508\(cs110\|_sightcam2\?\|_vista\)\?_init_data\[\]\[3\][ ]=' drivers/media/video/gspca/spca508.c
3015     initnc 'static[ ]const[ ]__u16[ ]spca561_init_data\[\]\[2\][ ]=' drivers/media/video/gspca/spca561.c
3016     initnc 'static[ ]const[ ]__u16[ ]spca504\(_pccam600\|A_clicksmart420\)_\(init\|open\)_data\[\]\[3\][ ]=' drivers/media/video/gspca/sunplus.c
3017     initnc 'static[ ]const[ ]__u8[ ]qtable_\(creative_pccam\|spca504_default\)\[2\]\[64\][ ]=' drivers/media/video/gspca/sunplus.c
3018     initnc 'static[ ]const[ ]__u8[ ]\(effects\|gamma\)_table\[MAX_[A-Z]*\]\[[0-9]*\][ ]=' drivers/media/video/gspca/t631.c
3019     initnc 'static[ ]const[ ]__u8[ ]tas5130a_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/t613.c
3020     defsnc '[   ]static[ ]const[ ]\(__\)\?u8[ ]\(read_indexs\|n\(set\)\?[0-9]*\(_other\)\?\|missing\)\[[0-9x]*\][ ]=' drivers/media/video/gspca/t613.c
3021     defsnc 'static[ ]const[ ]__u8[ ]\(mi13[12]0\|po3130\|hv7131r\|ov76[67]0\)_\(\(soc\)\?initQ\?VGA_\(JPG\|data\)\|rundata\)\[\]\[4\][ ]=' drivers/media/video/gspca/vc032x.c
3022     initnc 'static[ ]const[ ]struct[ ]usb_action[ ]\(cs2102\|hdcs2020xx\|icm105axx\|ov7630c\|pb0330[3x]x\)_Initial\(Scale\)\?\[\][ ]=' drivers/media/video/gspca/zc3xx.c
3023     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_agc\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3024     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_ofdm\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3025     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_power_cck\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3026     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_power_cck_ch14\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3027     initnc 'static[ ]const[ ]__u16[ ]t10_dif_crc_table\[256\][ ]=' lib/crc-t10dif.c
3028     initnc 'static[ ]crb_128M_2M_block_map_t[ ]crb_128M_2M_map\[64\][ ]=' drivers/net/netxen/netxen_hw.c
3029     initnc 'static[ ]const[ ]__u16[ ]crc10_table\[256\][ ]=' drivers/usb/serial/safe_serial.c
3030     accept '[   ]*\([ ]*0\)*\([ ]*1\)*[\n][     ]*0[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]0[ ]1[ ]*2[ ]3[ ]4[ ]5[ ]6[ ]7' 'Documentation/bt8xxgpio.txt'
3031     initnc '[   ]static[ ]int[ ]exp_lut\[256\][ ]=' drivers/isdn/mISDN/dsp_audio.c
3032     initnc 'static[ ]const[ ]u32[ ]bf_pbox\[16[ ][+][ ]2\][ ]=' drivers/isdn/mISDN/dsp_blowfish.c
3033     initnc 'static[ ]const[ ]u32[ ]bf_sbox\[256[ ][*][ ]4\][ ]=' drivers/isdn/mISDN/dsp_blowfish.c
3034     initnc 'static[ ]u8[ ]sample_\(german_\(all\|old\)\|american_\(dialtone\|ringing\|busy\)\|special[123]\|silence\)\[\][ ]=' drivers/isdn/mISDN/dsp_tones.c
3035     initnc 'struct[ ]pattern[ ][{][^}]*int[ ]tone[;][^}]*[}][ ]pattern\[\][ ]=' drivers/isdn/mISDN/dsp_tones.c
3036     initnc 'static[ ]u8[ ]\([au]\|_4\)law_to_\([ua]law\|4bit\)\[256\][ ]=' drivers/isdn/mISDN/l1oip_codec.c
3037     initnc 'static[ ]unsigned[ ]char[ ]banner_table\[\][ ]=' arch/sh/boards/mach-microdev/led.c
3038     initnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]\(yytype_u\?int\(8\|16\)\|\(unsigned[ ]\)\?\(short\([ ]int\)\?\|char\)\)[ ]yy[^[]*\[\][ ]=[*][/][;]' scripts/genksyms/parse.c_shipped
3039     accept 'irq_prio_\([hdl]\|l[cd]\):'"$sepx$blobpat*" arch/arm/inlcude/asm/hardware/entry-macro-iomd.S
3040     defsnc '[   ]static[ ]const[ ]int[ ]desc_idx_table\[\][ ]=' arch/arm/include/asm/hardware/iop3xx-adma.h
3041     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]__u8[ ]\(hv7131r\|mi0360\|mo4000\|ov76\(60\|48\)\)_sensor_init\[\]\[8\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/sonixj.c
3042     defsnc 'static[ ]const[ ]struct[ ]ath_hal[ ]ar5416hal[ ]=' drivers/net/wireless/ath9k/hw.c
3043     defsnc 'static[ ]\(const[ ]\)\?u32[ ]ar\(5416\|9280\)\(Modes\(_fast_clock\)\?\|Common\|BB_RfGain\|Bank6\(TPC\)\?\|Addac\)\(_91[06]0\(1_1\)\?\|_9280\(_2\)\?\)\?\[\]\[[236]\][ ]=' drivers/net/wireless/ath9k/initvals.h
3044     ;;
3045
3046   */linux-2.6-gspca-git.patch)
3047     # Probably for 2.6.28 or .29.
3048     initnc 'static[ ]const[ ]__u8[ ]ov\(534\|772x\)_reg_initdata\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
3049     defsc 'static[ ]const[ ]\(__\)\?u8[ ]\(mi\(0360\|13[12]0\)\|po\(1200\|3130\)\|hv7131r\|ov76[67]0\)_\(\(soc\)\?_\?[iI]nit\(Q\?V\|SX\)GA\(_\(JPG\|data\)\)\?\|rundata\)\[\]\[4\][ ]=' drivers/media/video/gspca/vc032x.c
3050     # Already in 2.6.27.
3051     initnc 'static[ ]const[ ]__u8[ ]initOv6650\[\][ ]=' drivers/media/video/gspca/sonixb.c
3052     initnc '[   ][/][*][ ]Some[ ]more[ ]unknown[ ]stuff[ ][*][/]' drivers/media/video/gspca/sonixb.c
3053     defsnc 'static[ ]const[ ]__u8[ ]ov7648_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
3054     # No merge needed
3055     defsnc '#if[ ]0[\n][        ][{]0x30,[ ]0x0154,[ ]0x0008[}],' drivers/media/video/gspca/sunplus.c
3056     ;;
3057
3058   */linux*alsa*.patch)
3059     defsnc 'static[ ]u8[ ]tas3004_treble_table\[\][ ]=' sound/aoa/codecs/tas-basstreble.h
3060     defsnc 'static[ ]const[ ]unsigned[ ]char[ ]wm_vol\[256\][ ]=' sound/pci/ice1712/phase.c
3061     defsnc 'static[ ]const[ ]u16[ ]wm8900_reg_defaults\[WM8900_MAXREG\][ ]=' sound/soc/wm8900.c
3062     defsnc '[}][ ]\(clk_sys_ratios\|bclk_divs\)\[\][ ]=' sound/soc/wm8903.c
3063     ;;
3064
3065   */patch*-2.6.26-rc*)
3066     initnc 'static[ ]u64[ ]vec2off\[68\][ ]=' arch/ia64/kvm/process.c
3067     initnc "[   ][      ][      ]interrupts[ ]=[ ]<\\(0x\\)\\?3[ ]\\(0x\\)\\?0[ ]\\(0x\\)\\?0[ ][ ]$blobpat*>[;]" 'arch/powerpc/boot/dts/\(cm5200\|lite5200b\?\|kuroboxHG\|pcm030\|tqm5200\).dts'
3068     initnc 'static[ ]const[ ]u32[ ]crctab32\[\][ ]=' arch/x86/boot/tools/build.c
3069     initnc 'static[ ]const[ ]u64[ ]sha512_K\[80\][ ]=' 'crypto/sha512\(_generic\)\?.c'
3070     initnc 'static[ ]struct[ ]hash_testvec[ ]\(hmac_sha\(224\|256\)\|aes_xcbc128\|crc32c\)_tv_template\[\][ ]=' crypto/tcrypt.h
3071     initnc 'static[ ]struct[ ]cipher_testvec[ ]\(bf_cbc\|serpent\|tnepres\|aes\(_\(cbc\|ctr\|xts\)\)\?\|x\?tea\|anubis\(_cbc\)\?\|xeta\|camellia_cbc\|cts_mode\)_\(enc\|dec\)_tv_template\[\][ ]=' crypto/tcrypt.h
3072     initnc '[   ][      ]\.\(digest\|entries\|input\|key\|output\|plaintext\|result\)[  ]*=[ ][{"]' crypto/tcrypt.h
3073     initnc 'static[ ]const[ ]u8[ ]speedtab[ ]\[3\]\[12\][ ]=' drivers/ide/legacy/umc8672.c
3074     initnc 'static[ ]u8[ ]cvs_time_value\[\]\[XFER_UDMA_6[ ]-[ ]XFER_UDMA_0[ ][+][ ]1\][ ]=' drivers/ide/pci/sis5513.c
3075     initnc 'static[ ]u8[ ]\(ini\|act\|rco\)_time_value\[\]\[8\][ ]=' drivers/ide/pci/sis5513.c
3076     initnc 'static[ ]u8[ ]mt2131_config1\[\][ ]=' drivers/media/common/tuners/mt2131.c
3077     initnc 'static[ ]u8[ ]mt2266_init2\[\][ ]=' drivers/media/common/tuners/mt2266.c
3078     initnc 'u16[ ]e1000_igp_cable_length_table\[IGP01E1000_AGC_LENGTH_TABLE_SIZE\][ ]=' drivers/net/e1000/e1000_hw.c
3079     initnc '\(uint16_t\|u16\)[ ]e1000_igp_2_cable_length_table\[IGP02E1000_AGC_LENGTH_TABLE_SIZE\][ ]=' drivers/net/e1000/e1000_hw.c # u16 on 2.6.26
3080     oprepline '#define[ ]AR5K_RATES_11[ABG][ ]' drivers/net/wireless/ath5k/ath5k.h
3081     oprepline '[        ][{][ ]1,[ ]MODULATION_XR,[ ]1000,[ ]2,[ ]139,[ ]1[ ][}],[      ]' drivers/net/wireless/ath5k/ath5k.h
3082     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_mode[ ]rf\(5413\|24\(13\|25\)\)_ini_mode_end\[\][ ]=' drivers/net/wireless/ath5k/initvals.c
3083     initnc 'static[ ]yyconst[ ]flex_int\(16\|32\)_t[ ]yy_[^[]*\[[0-9]*\][ ]=' '.*\.lex\.c_shipped'
3084     initnc 'static[ ]const[ ]yytype_u\?int\(8\|16\)[ ]yy[^\n []*\[\][ ]=' '.*\.lex\.c_shipped'
3085     # new in 2.6.26
3086     defsnc 'static[ ]struct[ ]mse2snr_tab[ ]\(vsb\|qam\(64\|256\)\)_mse2snr_tab\[\][ ]=' drivers/media/dvb/frontends/au8522.c
3087     defsnc '[}][ ]\(VSB\|QAM\)_mod_tab\[\][ ]=' drivers/media/dvb/frontends/au8522.c
3088     initnc '[}][ ]itd1000_\(lpf_pga\|fre_values\)\[\][ ]=' drivers/media/dvb/frontends/itd1000.c
3089     initnc '[}][ ]\(vsb\|qam\(64\|256\)\)_snr_tab\[\][ ]=' drivers/media/dvb/frontends/s5h1411.c
3090     initnc '[}][ ]snr_tab\[\][ ]=' drivers/media/dvb/frontends/tda10048.c
3091     initnc '[   ]static[ ]const[ ]u8[ ]biphase_tbl\[\][ ]=' drivers/media/video/cx18/cx18-av-vbi.c
3092     initnc '[   ]static[ ]const[ ]u8[ ]mpeg_hdr_data\[\][ ]=' drivers/media/video/cx18/cx18-vbi.c
3093     initnc 'static[ ]u32[ ]reg_init_initialize\[\][ ]=' drivers/media/video/saa717x.c
3094     initnc '[   ][}][ ]vals\[\][ ]=' drivers/media/video/saa717x.c
3095     initnc 'static[ ]const[ ]u32[ ]\(main\|gear\)_seedset\[BACKOFF_SEEDSET_ROWS\]\[BACKOFF_SEEDSET_LFSRS\][ ]=' drivers/net/forcedeth.c
3096     blob 'unsigned[ ]char[ ]\(IDX_ACTIVATE_\(READ\|WRITE\)\|\(CM\|ULP\)_\(ENABLE\|SETUP\)\|DM_ACT\)[ ]=[ ]'"$sepx$blobpat*$sepx[;]" drivers/s390/net/qeth_core_mpc.c # from drivers/s390/net/qeth_mpc.c in 2.6.25
3097     initnc '[}][ ]pll_table\[\][ ]=' drivers/video/geode/lxfb_ops.c
3098     accept "[ ][ ][{][ ]0x00014284,[ ][ ]19688[ ][}],[\n][ ][ ][{][ ]0x00011104,[ ][ ]20400[ ][}],[\n][ ][ ][{][ ]$blobpat*[ ][}]," drivers/video/geode/lxfb_ops.c # won't be necessary in rc3
3099     initnc 'static[ ]const[ ]u16[ ]wm9713_reg\[\][ ]=' sound/soc/codecs/wm9713.c
3100     accept 'P[13]\([\n]#[^\n]*\)*[\n]*\([\n][0-9 ]*\)\+' drivers/video/logo/logo_blackfin_clut224.ppm
3101     ;;
3102   */patch*-2.6.25-rc*)
3103     initnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]uchar[ ]sbox\[8\]\[4\]\[16\][ ]=[ ][{][*][/][;]'
3104     accept '[   ][$]3[ ]=[ ][{][{]pge[ ]=[ ][{][{]ste[ ]=[ ][{]\(\([0-9][0-9a-fx{},\n   ]*\|\(pge\|ste\)[ ]=\|<repeats[ ][0-9]\+[ ]times>\)[{},\n       ]*\)*<repeats[ ]11[ ]times>[}]$'
3105     initnc 'static[ ]yyconst[ ]flex_int\(16\|32\)_t[ ]yy_[^[]*\[[0-9]*\][ ]='
3106     initnc 'static[ ]const[ ]yytype_u\?int\(8\|16\)[ ]yy[^[]*\[\][ ]='
3107     initnc '[   ]int[ ]bcomm_irq\[3[*]16\][ ]='
3108     initnc '[   ]static[ ]const[ ]int8[ ]countLeadingZerosHigh\[\][ ]='
3109     initnc 'static[ ]unsigned[ ]long[ ]shmedia_opcode_table\[64\][ ]='
3110     initnc 'u_char[ ]const[ ]data_sizes_16\[32\][ ]='
3111     initnc 'static[ ]u_char[ ]const[ ]data_sizes_32\[32\][ ]='
3112     initnc '[   ][      ]\.\(digest\|entries\|input\|key\|output\|plaintext\|result\)[  ]*=[ ][{]'
3113     initnc 'static[ ]struct[ ][^\n]*_testvec[ ][^\n]*_tv_template\[\][ ]='
3114     initnc 'static[ ]struct[ ]nic_qp_map[ ]nic_qp_mapping_[01]\[\][ ]='
3115     initnc 'static[ ]u8[ ]mt2266_init2\[\][ ]='
3116     initnc 'static[ ]struct[ ]regval[ ]ov_initvals\[\][ ]='
3117     initnc 'static[ ]struct[ ]regval[ ]stk1125_initvals\[\][ ]='
3118     initnc 'static[ ]u8[ ]bnx2x_stats_len_arr\[BNX2X_NUM_STATS\][ ]='
3119     initnc 'static[ ]const[ ]struct[ ]arb_line[ ]read_arb_data\[NUM_RD_Q\]\[MAX_RD_ORD[ ][+][ ]1\][ ]='
3120     initnc 'static[ ]const[ ]struct[ ]arb_line[ ]write_arb_data\[NUM_WR_Q\]\[MAX_WR_ORD[ ][+][ ]1\][ ]='
3121     initnc 'uint16_t[ ]e1000_igp_cable_length_table\[IGP01E1000_AGC_LENGTH_TABLE_SIZE\][ ]='
3122     initnc 'uint16_t[ ]e1000_igp_2_cable_length_table\[IGP02E1000_AGC_LENGTH_TABLE_SIZE\][ ]='
3123     oprepline '#define[ ]AR5K_RATES_11\([ABG]\|TURBO\|XR\)[ ]' drivers/net/wireless/ath5k/ath5k.h
3124     initnc '[   ][      ][}][ ]blinkrates\[\][ ]='
3125     initnc 'static[ ]const[ ]struct[ ]ath5k_ini[ ]ar5212_ini\[\][ ]='
3126     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5111\[\][ ]='
3127     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5112\[\][ ]='
3128     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5112a\[\][ ]='
3129     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5413\[\][ ]='
3130     initnc 'static[ ]const[ ]u16[ ]rtl8225bcd_rxgain\[\][ ]='
3131     initnc 'static[ ]const[ ]u8[ ]rtl8225_agc\[\][ ]='
3132     initnc 'static[ ]const[ ]u8[ ]rtl8225_tx_power_cck\[\][ ]='
3133     initnc 'static[ ]const[ ]u8[ ]rtl8225_tx_power_cck_ch14\[\][ ]='
3134     initnc 'static[ ]const[ ]u16[ ]rtl8225z2_rxgain\[\][ ]='
3135     accept '[ ][ ][ ][ ][ ]\([ ]49,\)*[\n]\([ 0-9,]*[\n]\)*[ ][ ][ ][ ][ ]\([ ]49,\)*$'
3136     initnc 'static[ ]const[ ]unsigned[ ]char[ ]wm_vol\[256\][ ]='
3137     accept 'domain<N>[ ]<cpumask>[ ]1[ ]2[ ]3[ ]4[ ]5[ ]6[ ]7[ ]8[ ]9[ ]10[ ]11[ ]12[ ]13[ ]14[ ]15[ ]16[ ]17[ ]18[ ]19[ ]20[ ]21[ ]22[ ]23[ ]24[ ]25[ ]26[ ]27[ ]28[ ]29[ ]30[ ]31[ ]32[ ]33[ ]34[ ]35[ ]36$'
3138     # drivers/net/e1000e/phy.c
3139     initnc 'static[ ]const[ ]u16[ ]e1000_igp_2_cable_length_table\[\][ ]='
3140     accept '[   ]24[ ]=>[ ]\[[\n]\([^\n]*[\n]\)*[       ]\]\(,[ ][0-9]\+[ ]=>[ ]\[\)\?$'
3141     accept '[   ][      ]'"[']"'0x[^\n]*[\n]\([^\n]*[\n]\)*[    ]\]\([,][ ][0-9]\+[ ]=>[ ]\[\)\?$'
3142     initnc 'const[ ]u\(8\|16\|32\)[ ]b43_ntab_\(\(adjustpower\|estimatepowerlt\|gainctl\|iqlt\|loftlt\|noisevar1\|tdi[24]0a\)[01]\|channelest\|frame\(lookup\|struct\)\|mcs\|pilot\|tdtrn\|tmap\)\[\][ ]='
3143     ;;
3144   */*drm*.patch)
3145     defsnc 'static[ ]struct[ ]v_table[ ]v_table\[\][ ]=' drivers/gpu/drm/i915/i915_dma.c
3146     defsnc '[}][ ]est3_modes\[\][ ]=' drivers/gpu/drm/drm_edid.c
3147     defsnc 'const[ ]u32[ ]r[67]xx_default_state\[\][ ]=' drivers/gpu/drm/radeon/r600_blit_shaders.c
3148     defsnc 'struct[ ]nv17_tv_norm_params[ ]nv17_tv_norms\[NUM_TV_NORMS\][ ]=' drivers/gpu/drm/nouveau/nv17_tv_modes.c
3149     defsnc 'static[ ]int[ ]atom_dst_to_src\[8\]\[4\][ ]=' drivers/gpu/drm/radeon/atom.c
3150     blobname 'matrox[/]g[24]00_warp\.fw' drivers/gpu/drm/mga/mga_warp.c
3151     blobname 'r128[/]r128_cce\.bin' drivers/gpu/drm/r128/r128_cce.c
3152     blobname 'radeon[/]R\([123]0\|[45]2\|S6[09]\)0_cp\.bin' drivers/gpu/drm/radeon/r100.c
3153     blobname 'radeon[/]\(R\(60\|V6[1237]\|S7[1378]\)[05]\|%s\)_\(pfp\|me\)\.bin' drivers/gpu/drm/radeon/r600.c
3154
3155     # linux-2.6-drm-i915-modeset.patch, nouveau-drm*.patch,
3156     # drm-fedora9-rollup.patch
3157     initnc 'static[ ]const[ ]u32[ ]filter_table\[\][ ]=' drivers/char/drm/intel_tv.c
3158     defsnc '\(static[ ]uint32_t\|[}]\)[ ]nv04_graph_ctx_regs[ ]\?\[\][ ]=' drivers/char/drm/nv04_graph.c
3159     defsnc 'static[ ]int[ ]nv1[07]_graph_ctx_regs[ ]\?\[\][ ]=' drivers/char/drm/nv10_graph.c
3160     defsnc '[   ][}][ ]common_modes\[17\][ ]=' drivers/gpu/drm/radeon/radeon_connectors.c
3161
3162     # drm-upgrayedd.patch
3163     defsnc 'static[ ]const[ ]u16[ ]\(y\|uv\)_static_hcoeffs\[N_HORIZ_\(Y\|UV\)_TAPS[ ][*][ ]N_PHASES\][ ]=' drivers/gpu/drm/i915/intel_overlay.c
3164
3165     # Although the developers of the drivers are not trying to stop
3166     # anyone from modifying it or understanding it, they acknowledge
3167     # these are bits of code, obtained through mmio interactions.
3168     # This means these blobs are not source code, AND original authors
3169     # of the blobs have power to stop others from modifying them.
3170     # Non-Free Software, for sure.
3171
3172     # initnc 'static[ ]uint32_t[ ]nv\(4[013467ace]\|49_4b\|8[46]\)_ctx_\(voodoo\|prog\)\[\][ ]=' 'drivers/char/drm/nv40_graph.c|.*'
3173     ;;
3174   */linux-2.6*-lirc.patch | */lirc-*.patch)
3175     defsnc 'const[ ]unsigned[ ]char[ ]map_table\[\][ ]=' drivers/input/lirc/lirc_ttusbir.c
3176     blobname 'haup-ir-blaster\.bin' drivers/input/lirc/lirc_zilog.c
3177     ;;
3178   */linux-2.6*-at76.patch)
3179     blobname 'atmel_at76c50\(3-\(i386[13]\|rfmd\(-acc\)\?\)\|5\(a\(mx\)\?\)\?-rfmd\(2958\)\?\)\.bin' drivers/net/wireless/at76_usb/at76_usb.c
3180     ;;
3181   */v4l1*.patch)
3182     accept '[(]at[ ]which[ ]point[ ]it[ ]should[ ]use[ ]request_firmware'
3183     ;;
3184   */linux-2.6-v4l-dvb*.patch)
3185     # post 2.6.35 fixes start here
3186     defsnc '[   ]static[ ]u8[ ]def_regs\[\][ ]=' drivers/media/common/tuners/tda18218.c
3187     accept '[   ]p7500->firmware[ ]=' drivers/media/dvb/dvb-usb/dw2102.c
3188     accept 'static[ ]struct[ ]dvb_usb_device_properties[ ]lme2510c\?_properties[ ]=[ ][{][\n]\([        ]\.\(caps\|usb_ctrl\)[ ]*=[ ][^",]*,[\n]*\)*\([ ]\.download_firmware[ ]=[ ]lme2510_download_firmware,[\n]\)\?[  ]\.firmware[ ]*=[ ]' drivers/media/dvb/dvb-usb/lmedm04.c
3189     blobname 'dvb-usb-lme2510c-\(s7395\|lg\)\.fw' drivers/media/dvb/dvb-usb/lmedm04.c
3190     defsnc 'static[ ]u8[ ]s7395_inittab\[\][ ]=' drivers/media/dvb/dvb-usb/lmedm04.h
3191     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]struct[ ]regdesc[ ]\(ofsm_init\|tuner_init_\(env77h11d5\|mt2060\(_2\)\?\|mxl500\(3d\|5\)\|qt1010\|mc44s803\|unknown\|tda18271\)\)\[\][ ]=\([ ][{][*][/][;]\)\?' drivers/media/dvb/frontends/af9013_priv.h
3192     blobname 'lgs8g75\.fw' drivers/media/dvb/frontends/lgs8gxxx.c
3193     defsnc 'static[ ]struct[ ]regdata[ ]mb86a20s_init\[\][ ]=' drivers/media/dvb/frontends/mb86a20s.c
3194     accept '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]struct[ ]dvb_usb_device_properties[ ][*][/][;][\n][ ]\.firmware[ ]*=[ ]["][/][*][(]DEBLOBBED[)][*][/]["],[\n][      ]\.download_firmware[ ]=[ ]m920x_firmware_download' drivers/media/dvb/dvb-usb/m920x.c
3195     defsnc 'static[ ]struct[ ]regdata[ ]s921_init\[\][ ]=' drivers/media/dvb/frontends/s921.c
3196     blobname 'v4l-cx23885-enc\.fw' drivers/media/video/cx23885/cx23885-417.c
3197     initc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]struct[ ]idxdata[ ]tbl_common\(_[a-e]\|5\|_\?3B\?\)\[\][ ]=\([ ][{][*][/][;]\)\?' 'drivers/media/video/gspca/gl860/gl860-\(mi2020\|mi1320\|ov9655\|ov2640\)\.c'
3198     initc '[    ]\?static[ ]const[ ]struct[ ]ov_i2c_regvals[ ]norm_7660\[\][ ]=' drivers/media/video/gspca/ov519.c
3199     defsnc '[   ]static[ ]const[ ]struct[ ]ov_regvals[ ]bridge_ov7660\[2\]\[10\][ ]=' drivers/media/video/gspca/ov519.c
3200     defsnc '[   ]static[ ]const[ ]u8[ ]fr_tb\[2\]\[6\]\[3\][ ]=' drivers/media/video/gspca/ov519.c
3201     defsnc '[   ]static[ ]const[ ]struct[ ]ov_i2c_regvals[ ]brit_7660\[\]\[7\][ ]=' drivers/media/video/gspca/ov519.c
3202     defsnc '[   ]static[ ]const[ ]struct[ ]ov_i2c_regvals[ ]contrast_7660\[\]\[31\][ ]=' drivers/media/video/gspca/ov519.c
3203     defsnc '[   ]static[ ]const[ ]struct[ ]ov_i2c_regvals[ ]colors_7660\[\]\[6\][ ]=' drivers/media/video/gspca/ov519.c
3204     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]__u8[ ]pac207_sensor_init\[\]\[8\(\][ ]=[ ][{]\)\?\([*][/][;]\)\?' drivers/media/video/gspca/pac207.c
3205     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]__u8[ ]pas202_sensor_init\[\]\[8\(\][ ]=[ ][{]\)\?\([*][/][;]\)\?' drivers/media/video/gspca/sonixb.c
3206     defsnc 'static[ ]\(const[ ]\)\?\(__\)\?u8[ ]\(mt9v111\|sp80708\|hv7131r\|mi0360b\?\|mo4000\|ov76\([36]0\|48\)\|om6802\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
3207     defsnc 'static[ ]const[ ]struct[ ]ucbus_write_cmd[ ]\(icx098bq\|lz24bp\)_start_[012]\[\][ ]=' drivers/media/video/gspca/sq930x.c
3208     defsnc '[}][ ]capconfig\[4\]\[2\][ ]=' drivers/media/video/gspca/sq930x.c
3209     defsnc 'static[ ]const[ ]u16[ ]rca_initdata\[\]\[3\][ ]=' drivers/media/video/gspca/xirlink_cit.c
3210     defsnc 'static[ ]const[ ]struct[ ]usb_action[ ]\(cs2102\|hdcs2020xx\|icm105a\(xx\)\?\|ov7630c\|mt9v111_[13]\|pb0330\([3x]x\)\?\|mi0360soc\)_Initial\(Scale\)\?\[\][ ]=' drivers/media/video/gspca/zc3xx.c
3211     blobname 'NXP7164-2010-03-10\.1\.fw' drivers/media/video/saa7164/saa7164-fw.c
3212     defsnc 'const[ ]unsigned[ ]char[ ]map_table\[\][ ]=' drivers/input/lirc/lirc_ttusbir.c
3213     blobname 'haup-ir-blaster\.bin' drivers/input/lirc/lirc_zilog.c
3214     # removed bits
3215     defsnc 'static[ ]u8[ ]af9015_ir_table_\(leadtek\|twinhan\|a_link\|msi\|mygictv\|kworld\)\[\][ ]=' drivers/media/dvb/dvb-usb/af9015.h
3216     defsnc 'static[ ]u8[ ]af9015_ir_table_\(avermedia\(_ks\)\?\|digittrade\|trekstor\)\[\][ ]=' drivers/media/dvb/dvb-usb/af9015.h
3217     defsnc 'static[ ]struct[ ]keyboard_layout_map_t[ ]keyboard_layout_maps\[\][ ]=' drivers/media/dvb/siano/smsir.c
3218     defsnc 'static[ ]\(u16\|struct[ ]i2c_reg_u16\)[ ]\(bridge\|mt9\(v\(11[12]\|011\)\|m001\)\)_init\[\]\(\[2\]\)\?[ ]=' drivers/media/video/gspca/sn9c20x.c
3219     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]u8[ ]\(gc0307\|po2030n\)_sensor_\(init\|param1\)\[\]\[8\][ ]\(=[ ][{]\)\?\([*][/][;]\)\?' drivers/media/video/gspca/sonixj.c
3220     initnc '\([;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]\)\?static[ ]const[ ]u8[ ]poxxxx_init\(_common\|Q\?VGA\|_end_1\)\[\]\[4\][ ]\(=[ ][{]\)\?\([*][/][;]\)\?' drivers/media/video/gspca/vc032x.c
3221     # post 2.6.33 fixes start here
3222     defsnc 'static[ ]struct[ ]i2c_reg_u8[ ]ov9655_init\[\][ ]=' drivers/media/video/gspca/sn9c20x.c
3223     defsnc 'static[ ]const[ ]u8[ ]\(gc0307\|po2030n\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
3224     # rebase-gspca-to-latest 2.6.33ish starts here
3225     defsnc 'static[ ]const[ ]u8[ ]\(bridge\|sensor\)_init\(_2\)\?\[\]\[2\][ ]=' drivers/media/video/gspca/ov534_9.c
3226     defsnc 'static[ ]const[ ]u8[ ]bridge_start_\([qs]\?v\|x\)ga\[\]\[2\][ ]=' drivers/media/video/gspca/ov534_9.c
3227     defsnc 'static[ ]const[ ]__u8[ ]\(start\|page3\)_7302\[\][ ]=' drivers/media/video/gspca/pac7302.c
3228     defsnc '[   ]struct[ ]init_command[ ]\(spy\|cif\|ms350\|genius\|vivitar\)_start_commands\[\][ ]=' drivers/media/video/gspca/sn9c2028.c
3229     defsnc 'static[ ]const[ ]__u8[ ]initOv6650\[\][ ]=' drivers/media/video/gspca/sonixb.c
3230     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]__u8[ ]ov6650_sensor_init\[\]\[8\][ ]=[*][/][;]' drivers/media/video/gspca/sonixb.c
3231     defsnc 'static[ ]const[ ]__u8[ ]pas202_sensor_init\[\]\[8\][ ]=' drivers/media/video/gspca/sonixb.c
3232     defsnc 'static[ ]const[ ]u8[ ]\(adcm1700\|om6802\|po1030\)_sensor_\(init\|param1\)\[\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
3233     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]u8[ ]hv7131r_sensor_init\[\]\[8\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/sonixj.c
3234     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]u8[ ]po1030_sensor_param1\[\]\[8\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/sonixj.c
3235     defsnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]u8[ ]\(mi1320\|po3130\)_initVGA_data\[\]\[4\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/sonixj.c
3236     defsnc 'static[ ]const[ ]u8[ ]poxxxx_init\(_common\|Q\?VGA\|_end_1\)\[\]\[4\][ ]=' drivers/media/video/gspca/vc032x.c
3237     defsnc '[   ]static[ ]const[ ]u8[ ]gamma_tb\[6\]\[16\][ ]=' drivers/media/video/gspca/zc3xx.c
3238     # rebase-gspca-to-latest ends here
3239     defsnc 'static[ ]u8[ ]af9015_ir_table_\(avermedia\(_ks\)\?\|digittrade\)\[\][ ]=' drivers/media/dvb/dvb-usb/af9015.h
3240     defsnc 'struct[ ]au8522_register_config[ ]lpfilter_coef\[\][ ]=' drivers/media/dvb/frontends/au8522_decoder.c
3241     defsnc 'static[ ]struct[ ]mse2snr_tab[ ]\(vsb\|qam\(64\|256\)\)_mse2snr_tab\[\][ ]=' drivers/media/dvb/frontends/au8522.c
3242     defsnc '[}][ ]\(VSB\|QAM\)_mod_tab\[\][ ]=' drivers/media/dvb/frontends/au8522.c
3243     initc 'static[ ]const[ ]u8[ ]jpeg_head\[\][ ]=' drivers/media/video/gspca/jpeg.h
3244     defsnc 'static[ ]const[ ]u8[ ]\(bridge\|sensor\)_init_ov965x\(_2\)\?\[\]\[2\][ ]=' drivers/media/video/gspca/ov534.c
3245     defsnc '[   ]static[ ]const[ ]u8[ ]probe_tb\[\]\[4\]\[8\][ ]=' drivers/media/video/gspca/sonixj.c
3246     defsnc 'static[ ]const[ ]\(__u16\|u8\)[ ]spca505b\?_\(init\|open\)_data\(_ccd\)\?\[\]\[3\][ ]=' drivers/media/video/gspca/spca505.c
3247     defsnc 'static[ ]const[ ]u8[ ]n4_lt168g\[\][ ]=' drivers/media/video/gspca/t613.c
3248     defsnc '[   ]static[ ]const[ ]\(__\)\?u8[ ]\(read_indexs\|n\(set\)\?[0-9]*\(_other\)\?\|missing\)\[[0-9x]*\][ ]=' drivers/media/video/gspca/t613.c
3249     defsnc 'static[ ]const[ ]u8[ ]eeprom_data\[\]\[3\][ ]=' drivers/media/gspca/tv8532.c
3250     initnc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]__u16[ ]spca508_vista_init_data\[\]\[3\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/spca508.c
3251     defsc '[;][/][*]@@[ ]-[0-9]*,[0-9]*[ ][+][0-9]*,[0-9]*[ ]@@[ ]static[ ]const[ ]__u8[ ]mi1310_socinitVGA_JPG\[\]\[4\][ ]=[ ][{][*][/][;]' drivers/media/video/gspca/vc032x.c
3252     initc 'static[ ]const[ ]\(__\)\?u8[ ]\(mi\(0360\|13[12]0\)\|po\(1200\|3130\)\|hv7131r\|ov76[67]0\)_\(\(soc\)\?_\?[iI]nit\(Q\?V\|SX\)GA\(_\(JPG\|data\)\)\?\|rundata\)\[\]\[4\][ ]=' drivers/media/video/gspca/vc032x.c
3253     ;;
3254   */linux-2.6-modsign-mpilib.patch)
3255     initnc 'const[ ]unsigned[ ]char[ ]__clz_tab\[\][ ]='
3256     ;;
3257   */linux-2.6-netdev*.patch | \
3258   */linux-2.6.27-net-r8169-2.6.28.patch)
3259     defsnc '[   ][      ]*struct[ ]phy_reg[ ]phy_reg_init_[01]\[\][ ]=' drivers/net/r8169.c
3260     ;;
3261   */linux-2.6-wireless*.patch | */linux-2.6-ath5k.patch | \
3262   */git-wireless-dev.patch | */linux-2.6-zd1211rw-mac80211.patch)
3263     initnc 'const[ ]u\(8\|16\|32\)[ ]b43_ntab_\(\(adjustpower\|estimatepowerlt\|gainctl\|iqlt\|loftlt\|noisevar1\|tdi[24]0a\)[01]\|channelest\|frame\(lookup\|struct\)\|mcs\|pilot\|tdtrn\|tmap\)\[\][ ]='
3264     initnc 'static[ ]const[ ]s8[ ]\(b43\(legacy\)\?\|bcm43xx\)_tssi2dbm_[bg]_table\[\][ ]='
3265     initnc 'static[ ]struct[ ]iwl\(3945\)\?_tx_power[ ]power_gain_table\[2\]\[IWL_MAX_GAIN_ENTRIES\][ ]='
3266     initnc 'static[ ]const[ ]struct[ ]gain_entry[ ]gain_table\[2\]\[108\][ ]='
3267     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_5222\[\][ ]='
3268     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_5225_2527\[\][ ]=' drivers/net/wireless/rt2x00/rt73usb.c
3269     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_5226\[\][ ]=' drivers/net/wireless/rt2x00/rt73usb.c
3270     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg\[\][ ]='
3271     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2522\[\][ ]='
3272     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2523\[\][ ]='
3273     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2524\[\][ ]='
3274     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2525\[\][ ]='
3275     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2525e\[\][ ]='
3276     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_bg_2528\[\][ ]=' drivers/net/wireless/rt2x00/rt73usb.c
3277     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_noseq\[\][ ]='
3278     initnc 'static[ ]const[ ]struct[ ]rf_channel[ ]rf_vals_seq\[\][ ]='
3279     initnc '[   ]static[ ]const[ ]u8[ ]t\[\][ ]='
3280     initnc 'static[ ]const[ ]u16[ ]rtl8225bcd_rxgain\[\][ ]='
3281     initnc 'static[ ]const[ ]u8[ ]rtl8225_agc\[\][ ]='
3282     initnc 'static[ ]const[ ]u8[ ]rtl8225_tx_power_cck\[\][ ]='
3283     initnc 'static[ ]const[ ]u8[ ]rtl8225_tx_power_cck_ch14\[\][ ]='
3284     initnc 'static[ ]const[ ]u16[ ]rtl8225z2_rxgain\[\][ ]='
3285     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5111\[\][ ]='
3286     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5112\[\][ ]='
3287     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5112a\[\][ ]='
3288     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_rf[ ]rfregs_5413\[\][ ]='
3289     oprepline '#define[ ]AR5K_RATES_11A[ ]'
3290     oprepline '#define[ ]AR5K_RATES_11B[ ]'
3291     oprepline '#define[ ]AR5K_RATES_11G[ ]'
3292     oprepline '#define[ ]AR5K_RATES_TURBO[ ]'
3293     oprepline '#define[ ]AR5K_RATES_XR[ ]'
3294     initnc 'static[ ]const[ ]struct[ ]ath5k_ini[ ]ar5212_ini\[\][ ]='
3295     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_mode[ ]rf\(5413\|24\(13\|25\)\)_ini_mode_end\[\][ ]=' drivers/net/wireless/ath5k/initvals.c # ?
3296     initnc '[   ][      ][}][ ]blinkrates\[\][ ]='
3297
3298     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_agc\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3299     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_ofdm\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3300     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_power_cck\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3301     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_power_cck_ch14\[\][ ]=' drivers/net/wireless/rtl8187_rtl8225.c
3302
3303     # git logs
3304     accept '[ ][ ][ ]sudo[ ]modprobe[ ]ath5k[ ]debug=0x00000400[\n][    ]*[\n]\([       ]*Band[^\n]*[\n]\([     ]*\(\(channels\|rates\):\|[-    0-9a-f]*\|\[\.\.\.[ ]etc[ ]\]\)[\n]\)\+\)\+[ ][ ][ ][ ][ ][ ][ ]540[ ]000c[ ]0000[ ]0000'
3305     oprepline '[        ][{][ ]1,[ ]MODULATION_XR,[ ]3000,[ ]1,[ ]150,[ ]3[ ][}],'
3306
3307     # Fedora 8ish kernel-xen builds
3308     initnc 'const[ ]u16[ ]crc_itu_t_table\[256\][ ]='
3309     initnc 'static[ ]const[ ]u16[ ]tkip_sbox\[256\][ ]='
3310     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_mode[ ]ar5211_ini_mode\[\][ ]='
3311     initnc 'static[ ]const[ ]struct[ ]ath5k_ini_mode[ ]ar5212_rf511[12]_ini_mode\[\][ ]='
3312     initnc '[   ]static[ ]const[ ]u8[ ]log10\[\][ ]='
3313     initnc 'static[ ]const[ ]u8[ ]rtl8225z2_tx_gain_cck_ofdm\[\][ ]='
3314     initnc 'static[ ]const[ ]u32[ ]rf_vals_abg_5222\[\][ ]='
3315     ;;
3316
3317   */linux-2.6-netdev-e1000e*.patch)
3318     initnc 'static[ ]const[ ]u16[ ]e1000_igp_2_cable_length_table\[\][ ]=' drivers/net/e1000e/phy.c
3319     ;;
3320
3321   */deblob-check-testsuite/*)
3322     accept 'accept[(][^)]*[)]'
3323     blobname 'blob[(][^)]*[)]'
3324     blobname 'blobeol[^\n]*[\n]'
3325     ;;
3326   esac
3327 }
3328
3329 # Regular expression that matches a literal constant.
3330 constx="[0-9][0-9a-fA-FxX]*"
3331 # Regular expression that matches a separator between consecutive
3332 # literal constants.
3333 sepx="\\([      \\n]*\\(\\([    \\n]\\|[,:{}LlUu\"\'\\\\][,:{}  \\nLlUu\"\'\\\\]*\\)[xX\$]\\?\\|[.][a-zA-Z][a-zA-Z0-9]*[        ][      ]*[\$]\\?\\)\\)"
3334
3335 # Regular expression that matches a continuation of a blob, after an
3336 # initial constant.  *, \+ and \? can be safely appended to it without
3337 # \(\)s.
3338 blobcont="\\($sepx$constx\\)"
3339
3340 # Regular expression that matches the initial constant of a blob plus
3341 # its continuation.  *, \+ and \? can be safely appended to it without
3342 # \(\)s.
3343 blobpat="$constx$blobcont"
3344
3345 # Regular expression that matches a blob with at least the number of
3346 # constants specified as sensitivity.
3347 blobseq="$blobpat\\{$sens,\\}"
3348
3349 # Regular expression that matches the beginning of the pattern or a
3350 # line break.  It must be \(\)ed, such that it can be named in
3351 # replacement patterns.
3352 bol="\\(^\\|[\\n]\\)"
3353
3354 # Regular expression that matches the end of the pattern or a line
3355 # break.  It must be \(\)ed, such that it can be named in replacement
3356 # patterns.
3357 eol="\\([\\n]\\|\$\\)"
3358
3359 # Regular expression that matches a C-style comment.
3360 comment="\\([/][*][^*]*\\([*]\\+[^*/][^*]*\\)*[*]\\+[/]\\|[/][/][^\\n]*[\\n]\\)"
3361
3362 # Regular expression that matches comments typically used in assembly.
3363 asmcomment="\\($comment\\|[;#][^\\n]*[\\n]\\)"
3364
3365 # Regular expression that matches a braced initializer containing at
3366 # least one blob.
3367 initblob="[^\\n=]*=\\([         \\n\\\\]\\|$comment\\)*[{]\\([^;]\\|$comment\\)*$blobseq\\([^;]\\|$comment\\)*[}]\\?\\([        \\n\\\\]*\\|$comment\\)[;]\\?"
3368
3369 # Regular expression that matches a C (possibly multi-line) #define
3370 # that contains a blob.
3371 defineblob='[   ]*#[    ]*define[       ][^\n]*\([\\][\n][^\n]*\)*'"$blobseq"'\([^\n]*\\[\n]\)*'
3372
3373 # Regular expression that matches an assembly label followed by a blob
3374 # without any intervening label.
3375 asmblob="[a-zA-Z_.][^\\n:;#/    ]*:\\([^:{}]\\|$asmcomment\\)*$blobseq\\([^:]*\\|$asmcomment\\)*"
3376
3377 # Set up the sed script that will go through the (processed) input,
3378 # looking for sequences of blobs and printing whatever was requested.
3379 # It accepts 3 arguments.
3380
3381 # $1 is the action in case blobs were found in the input.
3382
3383 # $2 is the action in case no blobs were found, not even false positives.
3384
3385 # $3 is the action in case false positives were located.
3386
3387 # $4 is the action for every complete input pattern.
3388
3389 set_sed_main () {
3390   falsepos=`${SED-sed} -n 's,^[+]\^*,,p' < "$regex_name" |
3391     ${SED-sed} -n -e 's,[$]$,\\\\([\\\\n]\\\\|$\\\\),' \
3392         -e '1h; 1!H; ${g;s,[\n],\\\\|,g;s,^\(..*\)$,\\\\(\1\\\\),;p;}'`
3393   blobs=`${SED-sed} -n 's,^[-],,p' < "$regex_name" |
3394     ${SED-sed} -n -e 's,[$]$,\\\\([\\\\n]\\\\|$\\\\),' \
3395         -e '1h; 1!H; ${g;s,[\n],\\\\|,g;s,^\(..*\)$,\\\\(\1\\\\),;p;}'`
3396
3397   # Regular expression that matches one or more blobs without
3398   # intervening line breaks.
3399   sblobctx="\\(\\([^\\n]\\|[/][*](DEBLOB-\\nBED)[*][/]\\)*$blobs\\)\\+"
3400
3401   # Regular expression that matches the context for a long blob match.
3402   lblobctx="\\($initblob\\|$defineblob\\|$asmblob\\|$sblobctx\\)"
3403
3404   if test "X$falsepos" != X; then
3405     check_false_positives="$v:???falsepos
3406 /$bol$falsepos/!b blob
3407 $v:+++falsepos
3408 h
3409 s/$bol$falsepos/\\1;\/**\/;/g
3410 # See if, after removing all matches, we end up without any blobs.
3411 $v:???blobs
3412 /$blobs/!{
3413   g
3414   b falsepos
3415 }
3416 g
3417 "
3418   else
3419     falsepos="$.^"
3420     check_false_positives=
3421   fi
3422
3423   $echo "#! /bin/sed -nf
3424
3425 /^$/N
3426 /^[\\n]\\?;[/][*]\\(end .*\\)\\?[*][/];$/{
3427   $4
3428   d
3429 }
3430 # /^;[/][*]begin /!{
3431 #   : internal_error
3432 #   $v:internal_error
3433 #   s,.*,Internal error at\\n&[\\n]/*(DEBLOB-\\nERROR)*/,;
3434 #   q 2
3435 # }
3436 $v:reading file in
3437 h
3438 n
3439 : read_more
3440 /^;[/][*]end [^\\n]*[*][/];$/! {
3441   H
3442   n
3443   b read_more
3444 }
3445 H
3446 g
3447 $4
3448 $v:read all
3449 s/^\\(;[/][*]begin [^\\n]*[\\n]\\)*//
3450 s/\\($bol[\n]\?;[/][*]\\(end [^\\n]*\\)\\?[*][/];\\)*$//
3451 $v:???!blobs
3452 /$blobs/!b clean
3453 $check_false_positives
3454 # Fall through.
3455 : blob
3456 $v:blob
3457 $1
3458 d
3459 : clean
3460 $v:clean
3461 $2
3462 d
3463 : falsepos
3464 $v:falsepos
3465 $3
3466 d
3467
3468 : print_matches
3469 $v:print_matches
3470 /^$falsepos/! {
3471   $v:delete unmatching lines
3472   h
3473   s/[\\n]$falsepos.*//
3474   : print_matches_nomatch_loop
3475   /[\\n]/ {
3476     s/^[^\\n]*[\\n]//
3477     x
3478     s/^[^\\n]*[\\n]//
3479     x
3480     b print_matches_nomatch_loop
3481   }
3482   x
3483   b print_matches_delete_to_eol
3484 }
3485 h
3486 s/^\\($falsepos[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3487 $v:narrowed to match
3488 /$blobs/ {
3489   i\\
3490 ::: $file :::
3491   p
3492 }
3493 g
3494 s/^\\($falsepos[^\\n]*\\)//
3495 : print_matches_delete_to_eol
3496 $v:delete to eol
3497 s/^[^\\n]*//
3498 /^$/d
3499 s/^[\\n]//
3500 b print_matches
3501
3502 : print_marked_matches
3503 $v:print_marked_matches
3504 /^$falsepos/! {
3505   h
3506   s/[\\n]$falsepos.*//
3507   : print_marked_matches_nomatch_loop
3508   /[\\n]/ {
3509     s/^[^\\n]*[\\n]//
3510     x
3511     s/^[^\\n]*[\\n]//
3512     x
3513     b print_marked_matches_nomatch_loop
3514   }
3515   x
3516   b print_marked_matches_delete_to_eol
3517 }
3518 h
3519 s/^\\($falsepos[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3520 $v:narrowed to match
3521 /$blobs/{
3522   i\\
3523 ::: $file :::
3524   # s/{\\($sepx\\)\\?$blobseq\\($sepx\\)\\?}[   ]*;/{\/*(DEBLOBBED)*\/};/g
3525   s/$blobs/\/*(DEBLOBBED)*\//g
3526   p
3527 }
3528 g
3529 s/^\\($falsepos[^\\n]*\\)//
3530 : print_marked_matches_delete_to_eol
3531 $v:delete to eol
3532 s/^[^\\n]*//
3533 /^$/d
3534 s/^[\\n]//
3535 b print_marked_matches
3536
3537 : print_blobs
3538 $v:print_blobs
3539 /^$falsepos/ {
3540   $v:delete false positive
3541   # This is tricky.  We don't want to print the false positive.
3542   /^$falsepos[^\\n]*$blobs/ {
3543     $v:delete false positive immediately followed by blob
3544     s/^\\($falsepos\\)/\\1\/*(DEBLOB-\\nBED)*\//
3545     h
3546     s/^\\($falsepos\\).*/\\1/
3547     $v:matched false positive
3548     : print_blobs_match_loop
3549     /[\\n]/ {
3550       s/^[^\\n]*[\\n]//
3551       x
3552       s/^[^\\n]*[\\n]//
3553       x
3554       b print_blobs_match_loop
3555     }
3556     G
3557     b print_blobs_delete_to_eol
3558   }
3559   /^$falsepos[/][*](DEBLOB-\\nBED)[*][/]/! {
3560     s/^$falsepos//
3561     b print_blobs_delete_to_eol
3562   }
3563 }
3564 /^\([^\\n]\|[/][*](DEBLOB-\\nBED)[*][/]\)*$blobs/! {
3565   $v:delete non-blob header
3566   h
3567   s/[\\n]\\($falsepos\\|[^\\n]*$blobs\\).*//
3568   $v:matched non-blob header
3569   : print_blobs_nomatch_loop
3570   /[\\n]/ {
3571     s/^[^\\n]*[\\n]//
3572     x
3573     s/^[^\\n]*[\\n]//
3574     x
3575     b print_blobs_nomatch_loop
3576   }
3577   x
3578   b print_blobs_delete_to_eol
3579 }
3580 i\\
3581 ::: $file :::
3582 : print_blobs_output_false_positive
3583 /[^\\n]*[/][*](DEBLOB-[\\n]BED)[*][/]/ {
3584   P
3585   s,^[^\\n]*[\\n],,
3586   b print_blobs_output_false_positive
3587 }
3588 h
3589 s/\\($blobs\\([^\\n]*$blobs\\)*[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3590 $v:narrowed to blob
3591 p
3592 g
3593 s/\\(\\($blobs[^\\n]*\\)\\+\\)//
3594 : print_blobs_delete_to_eol
3595 $v:delete to eol
3596 s/^[^\\n]*//
3597 /^$/d
3598 s/^[\\n]//
3599 b print_blobs
3600
3601 : print_marked_blobs
3602 $v:print_marked_blobs
3603 /^$falsepos/ {
3604   $v:delete false positive
3605   # This is tricky.  We don't want to print the false positive.
3606   /^$falsepos[^\\n]*$blobs/ {
3607     $v:delete false positive immediately followed by blob
3608     s/^\\($falsepos\\)/\\1\/*(DEBLOB-\\nBED)*\//
3609     h
3610     s/^\\($falsepos\\).*/\\1/
3611     $v:matched false positive
3612     : print_marked_blobs_match_loop
3613     /[\\n]/ {
3614       s/^[^\\n]*[\\n]//
3615       x
3616       s/^[^\\n]*[\\n]//
3617       x
3618       b print_marked_blobs_match_loop
3619     }
3620     G
3621     b print_marked_blobs_delete_to_eol
3622   }
3623   /^$falsepos[/][*](DEBLOB-\\nBED)[*][/]/! {
3624     s/^falsepos//
3625     b print_marked_blobs_delete_to_eol
3626   }
3627 }
3628 /^\([^\\n]\|[/][*](DEBLOB-\\nBED)[*][/]\)*$blobs/! {
3629   $v:delete non-blob header
3630   h
3631   s/[\\n]\\($falsepos\\|[^\\n]*$blobs\\).*//
3632   $v:matched non-blob header
3633   : print_marked_blobs_nomatch_loop
3634   /[\\n]/ {
3635     s/^[^\\n]*[\\n]//
3636     x
3637     s/^[^\\n]*[\\n]//
3638     x
3639     b print_marked_blobs_nomatch_loop
3640   }
3641   x
3642   b print_marked_blobs_delete_to_eol
3643 }
3644 i\\
3645 ::: $file :::
3646 : print_marked_blobs_output_false_positive
3647 /[^\\n]*[/][*](DEBLOB-[\\n]BED)[*][/]/ {
3648   P
3649   s,^[^\\n]*[\\n],,
3650   b print_marked_blobs_output_false_positive
3651 }
3652 h
3653 s/\\($blobs\\([^\\n]*$blobs\\)*[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3654 $v:narrowed to blob
3655 # s/{\\($sepx\\)\\?$blobseq\\($sepx\\)\\?}[     ]*;/{\/*(DEBLOBBED)*\/};/g
3656 s/$blobs/\/*(DEBLOBBED)*\//g
3657 p
3658 g
3659 s/\\(\\($blobs[^\\n]*\\)\\+\\)//
3660 : print_marked_blobs_delete_to_eol
3661 $v:delete to eol
3662 s/^[^\\n]*//
3663 /^$/d
3664 s/^[\\n]//
3665 b print_marked_blobs
3666
3667 : print_cblobs
3668 $v:print_cblobs
3669 /^$falsepos/ {
3670   $v:delete false positive
3671   # This is tricky.  We don't want to print the false positive.
3672   /^$falsepos[^\\n]*$blobs/ {
3673     $v:delete false positive immediately followed by blob
3674     s/^\\($falsepos\\)/\\1\/*(DEBLOB-\\nBED)*\//
3675     h
3676     s/^\\($falsepos\\).*/\\1/
3677     $v:matched false positive
3678     : print_cblobs_match_loop
3679     /[\\n]/ {
3680       s/^[^\\n]*[\\n]//
3681       x
3682       s/^[^\\n]*[\\n]//
3683       x
3684       b print_cblobs_match_loop
3685     }
3686     G
3687     b print_cblobs_delete_to_eol
3688   }
3689   /^$falsepos[/][*](DEBLOB-\\nBED)[*][/]/! {
3690     s/^$falsepos//
3691     b print_cblobs_delete_to_eol
3692   }
3693 }
3694 /^$lblobctx/! {
3695   $v:delete non-blob header
3696   h
3697   s/[\\n]\\($falsepos\\|$lblobctx\\).*//
3698   $v:matched non-blob header
3699   : print_cblobs_nomatch_loop
3700   /[\\n]/ {
3701     s/^[^\\n]*[\\n]//
3702     x
3703     s/^[^\\n]*[\\n]//
3704     x
3705     b print_cblobs_nomatch_loop
3706   }
3707   x
3708   b print_cblobs_delete_to_eol
3709 }
3710 i\\
3711 ::: $file :::
3712 : print_cblobs_output_false_positive
3713 /[^\\n]*[/][*](DEBLOB-[\\n]BED)[*][/]/ {
3714   P
3715   s,^[^\\n]*[\\n],,
3716   b print_cblobs_output_false_positive
3717 }
3718 h
3719 s/^\\($lblobctx\\([^\\n]*$blobs\\)*[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3720 $v:narrowed to blob
3721 p
3722 g
3723 s/^\\($lblobctx[^\\n]*\\($blobs[^\\n]*\\)*\\)//
3724 : print_cblobs_delete_to_eol
3725 $v:delete to eol
3726 s/^[^\\n]*//
3727 /^$/d
3728 s/^[\\n]//
3729 b print_cblobs
3730
3731 : print_marked_cblobs
3732 $v:print_marked_cblobs
3733 /^$falsepos/ {
3734   $v:delete false positive
3735   # This is tricky.  We don't want to print the false positive.
3736   /^$falsepos[^\\n]*$blobs/ {
3737     $v:delete false positive immediately followed by blob
3738     s/^\\($falsepos\\)/\\1\/*(DEBLOB-\\nBED)*\//
3739     h
3740     s/^\\($falsepos\\).*/\\1/
3741     $v:matched false positive
3742     : print_marked_cblobs_match_loop
3743     /[\\n]/ {
3744       s/^[^\\n]*[\\n]//
3745       x
3746       s/^[^\\n]*[\\n]//
3747       x
3748       b print_marked_cblobs_match_loop
3749     }
3750     G
3751     b print_marked_cblobs_delete_to_eol
3752   }
3753   /^$falsepos[/][*](DEBLOB-\\nBED)[*][/]/! {
3754     s/^$falsepos//
3755     b print_marked_cblobs_delete_to_eol
3756   }
3757 }
3758 /^$lblobctx/! {
3759   $v:delete non-blob header
3760   h
3761   s/[\\n]\\($falsepos\\|$lblobctx\\).*//
3762   $v:matched non-blob header
3763   : print_marked_cblobs_nomatch_loop
3764   /[\\n]/ {
3765     s/^[^\\n]*[\\n]//
3766     x
3767     s/^[^\\n]*[\\n]//
3768     x
3769     b print_marked_cblobs_nomatch_loop
3770   }
3771   x
3772   b print_marked_cblobs_delete_to_eol
3773 }
3774 i\\
3775 ::: $file :::
3776 : print_marked_cblobs_output_false_positive
3777 /[^\\n]*[/][*](DEBLOB-[\\n]BED)[*][/]/ {
3778   P
3779   s,^[^\\n]*[\\n],,
3780   b print_marked_cblobs_output_false_positive
3781 }
3782 h
3783 s/^\\($lblobctx\\([^\\n]*$blobs\\)*[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3784 $v:narrowed to blob
3785 # s/{\\($sepx\\)\\?$blobseq\\($sepx\\)\\?}[     ]*;/{\/*(DEBLOBBED)*\/};/g
3786 s/$blobs/\/*(DEBLOBBED)*\//g
3787 p
3788 g
3789 s/^\\($lblobctx[^\\n]*\\($blobs[^\\n]*\\)*\\)//
3790 : print_marked_cblobs_delete_to_eol
3791 $v:delete to eol
3792 s/^[^\\n]*//
3793 /^$/d
3794 s/^[\\n]//
3795 b print_marked_cblobs
3796
3797 : print_both
3798 $v:print_both
3799 /^\\($falsepos\\|[^\\n]*$blobs\\)/! {
3800   $v:delete non-blob header
3801   h
3802   s/[\\n]\\($falsepos\\|[^\\n]*$blobs\\).*//
3803   $v:matched non-blob header
3804   : print_both_nomatch_loop
3805   /[\\n]/ {
3806     s/^[^\\n]*[\\n]//
3807     x
3808     s/^[^\\n]*[\\n]//
3809     x
3810     b print_both_nomatch_loop
3811   }
3812   x
3813   b print_both_delete_to_eol
3814 }
3815 h
3816 i\\
3817 ::: $file :::
3818 s/^\\(\\($falsepos\\|[^\\n]*$blobs\\)\\([^\\n]*$blobs\\)*[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3819 $v:narrowed to blob
3820 p
3821 g
3822 s/^\\(\\($falsepos[^\\n]*\\|[^\\n]*$blobs[^\\n]*\\)\\($blobs[^\\n]*\\)*\\)//
3823 : print_both_delete_to_eol
3824 $v:delete to eol
3825 s/^[^\\n]*//
3826 /^$/d
3827 s/^[\\n]//
3828 b print_both
3829
3830 : list_matches
3831 $v:list_matches
3832 /^$falsepos/! {
3833   $v:print unmatching lines
3834   h
3835   s/[\\n]$falsepos.*//
3836   p
3837   : list_matches_nomatch_loop
3838   /[\\n]/ {
3839     s/^[^\\n]*[\\n]//
3840     x
3841     s/^[^\\n]*[\\n]//
3842     x
3843     b list_matches_nomatch_loop
3844   }
3845   x
3846   b list_matches_delete_to_eol
3847 }
3848 h
3849 s/^\\($falsepos[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3850 $v:narrowed to match
3851 /$blobs/{
3852   # s/{\\($sepx\\)\\?$blobseq\\($sepx\\)\\?}[   ]*;/{\/*(DEBLOBBED)*\/};/g
3853   s/$blobs/\/*(DEBLOBBED)*\//g
3854 }
3855 p
3856 g
3857 s/^\\($falsepos[^\\n]*\\)//
3858 : list_matches_delete_to_eol
3859 $v:delete to eol
3860 s/^[^\\n]*//
3861 /^$/d
3862 s/^[\\n]//
3863 b list_matches
3864
3865 : list_blobs
3866 $v:list_blobs
3867 /^$falsepos/ {
3868   $v:print false positive
3869   # This is tricky.  We don't want to deblob the false positive.
3870   /^$falsepos[^\\n]*$blobs/ {
3871     $v:print false positive immediately followed by blob
3872     s/^\\($falsepos\\)/\\1\/*(DEBLOB-\\nBED)*\//
3873     h
3874     s/^\\($falsepos\\).*/\\1\\n/
3875     : list_blobs_match_loop
3876     /[\\n]/ {
3877       s/^[^\\n]*[\\n]//
3878       x
3879       P
3880       s/^[^\\n]*[\\n]//
3881       x
3882       b list_blobs_match_loop
3883     }
3884     G
3885     b list_blobs_delete_to_eol
3886   }
3887   h
3888   s/^\\($falsepos[^\\n]*\\)[\\n].*/\\1/
3889   p
3890   g
3891   s/^\\($falsepos[^\\n]*\\)//
3892   b list_blobs_delete_to_eol
3893 }
3894 /^[^\\n]*$blobs/! {
3895   $v:print non-blob header
3896   h
3897   s/[\\n]\\($falsepos\\|[^\\n]*$blobs\\).*//
3898   p
3899   : list_blobs_nomatch_loop
3900   /[\\n]/ {
3901     s/^[^\\n]*[\\n]//
3902     x
3903     s/^[^\\n]*[\\n]//
3904     x
3905     b list_blobs_nomatch_loop
3906   }
3907   x
3908   b list_blobs_delete_to_eol
3909 }
3910 h
3911 s/\\($blobs\\([^\\n]*$blobs\\)*[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3912 $v:narrowed to blob
3913 # s/{\\($sepx\\)\\?$blobseq\\($sepx\\)\\?}[     ]*;/{\/*(DEBLOBBED)*\/};/g
3914 s/$blobs/\/*(DEBLOBBED)*\//g
3915 p
3916 g
3917 s/\\(\\($blobs[^\\n]*\\)\\+\\)//
3918 : list_blobs_delete_to_eol
3919 $v:delete to eol
3920 s/^[^\\n]*//
3921 /^$/d
3922 s/^[\\n]//
3923 b list_blobs
3924
3925 : list_both
3926 $v:list_both
3927 /^\\($falsepos\\|[^\\n]*$blobs\\)/! {
3928   $v:print non-blob header
3929   h
3930   s/[\\n]\\($falsepos\\|[^\\n]*$blobs\\).*//
3931   p
3932   : list_both_nomatch_loop
3933   /[\\n]/ {
3934     s/^[^\\n]*[\\n]//
3935     x
3936     s/^[^\\n]*[\\n]//
3937     x
3938     b list_both_nomatch_loop
3939   }
3940   x
3941   b list_both_delete_to_eol
3942 }
3943 h
3944 s/^\\(\\($falsepos\\|[^\\n]*$blobs\\)\\([^\\n]*$blobs\\)*[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/
3945 $v:narrowed to blob
3946 # s/{\\($sepx\\)\\?$blobseq\\($sepx\\)\\?}[     ]*;/{\/*(DEBLOBBED)*\/};/g
3947 s/$blobs/\/*(DEBLOBBED)*\//g
3948 p
3949 g
3950 s/^\\(\\($falsepos[^\\n]*\\|[^\\n]*$blobs[^\\n]*\\)\\($blobs[^\\n]*\\)*\\)//
3951 : list_both_delete_to_eol
3952 $v:delete to eol
3953 s/^[^\\n]*//
3954 /^$/d
3955 s/^[\\n]//
3956 b list_both
3957
3958 " > "$scriptname"
3959
3960   scriptcmd='${SED-sed} -n -f "$scriptname"'
3961
3962   case $vp in
3963   [01]) xv= ;;
3964   2) xv='# ';;
3965   esac
3966
3967   sedunbreak='
3968 : restart
3969 /[/][*](DEBLOB-$/ {
3970   N
3971   /[/][*](DEBLOB-[\n]ERROR)[*][/]/{q 1;}'"
3972 $xv"'s,[/][*](DEBLOB-[\n]BED)[*][/],,
3973   b restart
3974 }
3975 p
3976 '
3977   scriptcmd2='${SED-sed} -n -e "$sedunbreak"'
3978 }
3979
3980 set_flex_main () {
3981   adjust_rx='
3982 s,\\\([{(|)}?+]\),\1,g
3983 s,^\([-+]\)\(\^\?\)\(.*\)\(\$\?\)$,\2(?s:\3)\4\1,g
3984 s,[+]$, { falsepos (); },
3985 s,[-]$, { blob (); },
3986 '
3987
3988   echo '%%' > "$scriptname"
3989   ${SED-sed} "$adjust_rx" < "$regex_name" >> "$scriptname"
3990   echo '\n|. { unmatched (); }
3991 %%
3992 int falsepos () {}
3993 int blob () {}
3994 int unmatched () {}
3995 ' >> "$scriptname"
3996
3997   scriptcmd=false
3998 }
3999
4000 set_python_main () {
4001   adjust_rx='
4002 s,\\(,\\(?:,g;
4003 s,\\\([{(|)}?+]\),\1,g;
4004 '
4005
4006   cat >> "$scriptname" <<EOF
4007 #! /usr/bin/python
4008
4009 import sys
4010 import re
4011
4012 # Should we replace blobs and false positives with replacement?
4013 replace_blob = 0
4014 replace_falsepos = 0
4015 replacement = '/*(DEBLOBBED)*/'
4016
4017 # Should we print lines containing blobs, false positives, and neither?
4018 print_blob = 0
4019 with_context = 0
4020 print_falsepos = 0
4021 print_nomatch = 0
4022
4023 # Should we print the input stack if we find blobs or false positives?
4024 list_blob = 0
4025 list_falsepos = 0
4026
4027 # Should we forget everything we know about false positives?
4028 falsepos = None
4029 no_falsepos = 0
4030
4031 verbose = $vp
4032
4033 # Which of the defaults above should we override?
4034 $@ = 1
4035
4036 EOF
4037
4038   if test "X$DEBLOB_CHECK_PYTHON_REGEX" = Xdebug; then
4039     ${SED-sed} -e 's,^[+-],,' -e "$adjust_rx" \
4040         -e "s,.*,re.compile (r'&'),g" \
4041         < "$regex_name" >> "$scriptname"
4042   fi
4043
4044   ${SED-sed} -n 's,^[+],,p' < "$regex_name" |
4045     ${SED-sed} -n -e "$adjust_rx" -e 's,\^,,' \
4046         -e '1h; 1!H; $ { g; s,[\n],|,g; '"\
4047 s,^\\(.*\\)\$,falsepos = r'(?P<falsepos>\\1)',;\
4048 "' p;}' >> "$scriptname"
4049
4050   ${SED-sed} -n 's,^[-],,p' < "$regex_name" |
4051     ${SED-sed} -n -e "$adjust_rx" \
4052         -e '1h; 1!H; $ { g; s,[\n],|,g; '"\
4053 s,^\\(.*\\)\$,blob = r'(?P<blob>\\1)',;\
4054 "' p;}' >> "$scriptname"
4055
4056   echo "\\($initblob\\|$defineblob\\|$asmblob\\)" |
4057     ${SED-sed} -e "$adjust_rx" \
4058         -e "s,^\\(.*\\)\$,cblob = r'(?P<cblob>\\1)'," >> "$scriptname"
4059
4060   cat >> "$scriptname" <<\EOF
4061
4062 if no_falsepos or falsepos is None:
4063     falsepos = r'(?!)'
4064
4065 rx = '^%s|%s' % (falsepos, blob)
4066
4067 if with_context:
4068     rx += '|^' + cblob
4069
4070 rxc = re.compile('(?<=.)(?:%s)' % rx, re.M | re.S)
4071
4072 filenames = None
4073
4074 s = '\n'
4075
4076 for line in sys.stdin:
4077     # Read into s all lines between begin and end.  An empty line, without
4078     # even the '\n', flags the end of the input.
4079     if line[:3] == ';/*' and line[-4:] == '*/;\n':
4080         if line[3:9] == 'begin ':
4081             nextfilenames = (line[9:-4], filenames)
4082             if s == '\n':
4083                 filenames = nextfilenames
4084                 del nextfilenames
4085                 continue
4086         elif line[3:7] == 'end ':
4087             #if print_blob and not print_nomatch:
4088             # from time import time
4089             # sys.stderr.write('%i %i %s\n' % (time(), len(s), filenames[0]))
4090             assert line[7:-4] == filenames[0]
4091             nextfilenames = filenames[1]
4092         else:
4093             assert filenames != None
4094             s += line
4095             continue
4096     else:
4097         assert filenames != None
4098         s += line
4099         continue
4100
4101     if verbose:
4102             print 'looking for matches'
4103             sfilenames = filenames
4104             while filenames != None:
4105                 if filenames[1] is None:
4106                     print filenames[0]
4107                 else:
4108                     print filenames[0] + ' within'
4109                 filenames = filenames[1]
4110             filenames = sfilenames
4111
4112     if s[-1] == '\n':
4113         s = s[:-1]
4114
4115     pp = 1
4116     p = pend = 0
4117     match = rxc.search (s, p)
4118     while match != None:
4119         firstmatch = match
4120         blobs = falses = 0
4121         while 1:
4122             if verbose:
4123                 print 'found match'
4124             what = match.lastgroup
4125
4126             if what == 'cblob':
4127                 if verbose: print 'match is a blob context'
4128                 pend = s.find ('\n', match.end()) + 1
4129                 if pend == 0:
4130                     pend = len(s)
4131                 p = match.start() + 1
4132                 blob_p = 2
4133             else:
4134                 blob_p = what == 'blob'
4135                 assert blob_p or what == 'falsepos'
4136
4137                 if blob_p:
4138                     if verbose: print 'match is a blob'
4139                     blobs += 1
4140                 else:
4141                     if verbose: print 'match is a false positive'
4142                     falses += 1
4143
4144                 if blob_p and replace_blob or not blob_p and replace_falsepos:
4145                     s = s[:match.start(what)] + replacement + s[match.end(what):]
4146                     p = match.start(what) + len(replacement)
4147                     if pend > match.start(what):
4148                         pend += p - match.end(what)
4149                 else:
4150                     p = match.end(what)
4151
4152                 if p > pend:
4153                     pend = s.find ('\n', p) + 1
4154                     if (pend == 0):
4155                         pend = len(s)
4156
4157             match = rxc.search (s, p)
4158             if match is None or match.start () >= pend or \
4159                (blob_p and not print_blob and not falses) or \
4160                (not blob_p and not print_falsepos and not blobs):
4161                 break
4162
4163         if print_nomatch:
4164             sys.stdout.write (s[pp:firstmatch.start() + 1])
4165             pp = firstmatch.start() + 1
4166         else:
4167             pp = s.rfind ('\n', 0, firstmatch.start () + 1) + 1
4168
4169         if print_blob and blobs or print_falsepos and falses:
4170             if not print_nomatch:
4171                 sfilenames = filenames
4172                 while filenames != None:
4173                     print '::: ' + filenames[0] + ' :::'
4174                     filenames = filenames[1]
4175                 filenames = sfilenames
4176             sys.stdout.write (s[pp:pend])
4177             pp = pend
4178
4179         if list_blob and blobs or list_falsepos and falses:
4180             while filenames != None:
4181                 if filenames[1] is None:
4182                     print filenames[0]
4183                 else:
4184                     print filenames[0] + ' within'
4185                 filenames = filenames[1]
4186             exit (1)
4187
4188     if print_nomatch:
4189         sys.stdout.write(s[pp:])
4190
4191     if verbose:
4192         print 'no further matches'
4193
4194     s = '\n'
4195     filenames = nextfilenames
4196     del nextfilenames
4197
4198 assert filenames is None
4199
4200 exit (0)
4201 EOF
4202
4203   scriptcmd="${PYTHON-python} "'"$scriptname"'
4204 }
4205
4206 set_perl_main () {
4207   adjust_rx='
4208 s,\\(,\\(?:,g;
4209 s,\\\([{(|)}?+]\),\1,g;
4210 '
4211
4212   # Add $ before arguments
4213   set `echo "$@" | sed 's,\(^\|= *\),&$,g'`
4214
4215   cat >> "$scriptname" <<\EOF
4216 #! /usr/bin/perl
4217
4218 use strict;
4219 use warnings;
4220
4221 # Should we replace blobs and false positives with replacement?
4222 my $replace_blob = 0;
4223 my $replace_falsepos = 0;
4224 my $replacement = '/*(DEBLOBBED)*/';
4225
4226 # Should we print lines containing blobs, false positives, and neither?
4227 my $print_blob = 0;
4228 my $with_context = 0;
4229 my $print_falsepos = 0;
4230 my $print_nomatch = 0;
4231
4232 # Should we print the input stack and exit if we find blobs or false positives?
4233 my $list_blob = 0;
4234 my $list_falsepos = 0;
4235
4236 # Should we forget everything we know about false positives?
4237 my $falsepos;
4238 my $no_falsepos = 0;
4239
4240 EOF
4241
4242   cat >> "$scriptname" <<EOF
4243 my \$verbose = $vp;
4244
4245 # Which of the defaults above should we override?
4246 $@ = 1;
4247
4248 EOF
4249
4250   ${SED-sed} -n 's,^[+],,p' < "$regex_name" |
4251     ${SED-sed} -n -e "$adjust_rx" -e 's,\^,,' \
4252         -e '1h; 1!H; $ { g; s,[\n],|,g; '"\
4253 s,^\\(.*\\)\$,\$falsepos = qr'(?<falsepos>\\1)'ms;,;\
4254 "' p;}' >> "$scriptname"
4255
4256   ${SED-sed} -n 's,^[-],,p' < "$regex_name" |
4257     ${SED-sed} -n -e "$adjust_rx" \
4258         -e '1h; 1!H; $ { g; s,[\n],|,g; '"\
4259 s,^\\(.*\\)\$,my \$blob = qr'(?<blob>\\1)'ms;,;\
4260 "' p;}' >> "$scriptname"
4261
4262   echo "\\($initblob\\|$defineblob\\|$asmblob\\)" |
4263     ${SED-sed} -e "$adjust_rx" \
4264         -e "s,^\\(.*\\)\$,my \$cblob = qr'(?<cblob>\\1)'ms if \$with_context;," >> "$scriptname"
4265
4266   cat >> "$scriptname" <<\EOF
4267
4268 $falsepos = qr/(?<falsepos>(?!))/ if $no_falsepos || ! defined $falsepos;
4269
4270 my $rx = qr/^$falsepos|$blob/ms;
4271
4272 $rx = qr/$rx|^$cblob/ms if $with_context;
4273
4274 my @filenames;
4275 my $nfilenames = 0;
4276 my $nextnfilenames;
4277
4278 my $s = '';
4279
4280 while (<STDIN>) {
4281     # Read into s all lines between begin and end.  An empty line, without
4282     # even the '\n', flags the end of the input.
4283     if (m:^[;][/][*](begin|end) (.*)[*][/][;]$:) {
4284         if ($1 eq 'begin') {
4285             print "entering $2\n" if $verbose;
4286             $filenames[$nfilenames] = $2;
4287             $nextnfilenames = $nfilenames + 1;
4288             if ($s eq '') {
4289                 $nfilenames = $nextnfilenames;
4290                 next;
4291             }
4292         } else {
4293             $nextnfilenames = $nfilenames - 1;
4294             print "processing $filenames[$nextnfilenames]\n" if $verbose;
4295         }
4296     } else {
4297         $s .= $_;
4298         next;
4299     }
4300
4301     if ($verbose) {
4302         print "looking for matches in\n";
4303         for (my $i = $nfilenames; --$i > 0; ) {
4304             print $filenames[$i], " within\n";
4305         }
4306         print $filenames[0], "\n";
4307     }
4308
4309     $s =~ s/[\n]$//;
4310
4311     my $pp = my $p = 0;
4312
4313     my $matchfound = substr ($s, $p) =~ /$rx/o;
4314     while ($matchfound) {
4315         print "found first match\n" if $verbose;
4316         my $firstmatchstart = $-[0] + $p;
4317         my $blobs = my $falses = 0;
4318         my $matchstart = $-[0] + $p;
4319         my $pend = -1;
4320         my $blob_p;
4321         do {{
4322             my $matchend = $+[0] + $p;
4323             print "found match $matchstart..$matchend\n" if $verbose;
4324             print "$&" if $verbose > 1;
4325
4326             if (defined $+{'cblob'}) {
4327                 print "match is a blob context\n" if ($verbose);
4328                 $pend = index ($s, "\n", $matchend) + 1;
4329                 $pend = length $s if !$pend;
4330             }
4331
4332             if (defined $+{'falsepos'}) {
4333                 print "match is a false positive\n" if ($verbose);
4334                 # $matchend -= $+[0] - $+[1];
4335                 $blob_p = 0;
4336                 $falses++;
4337             } elsif (defined $+{'blob'}) {
4338                 $blob_p = 1;
4339                 $blobs++;
4340                 print "match is a blob at $matchstart\n" if ($verbose);
4341             } else {
4342                 $blob_p = 2;
4343                 $p = $matchstart;
4344                 print "searching up to $pend\n" if $verbose;
4345                 next;
4346             }
4347
4348             if ($blob_p ? $replace_blob : $replace_falsepos) {
4349                 substr ($s, $matchstart, $matchend - $matchstart,
4350                         $replacement);
4351                 $p = $matchstart + length $replacement;
4352                 $pend += $p - $matchend if $pend >= $matchstart;
4353             } else {
4354                 $p = $matchend;
4355             }
4356
4357             $pend = index ($s, "\n", $p) + 1 if $p >= $pend;
4358             $pend = length $s if !$pend;
4359             print "searching up to $pend\n" if $verbose;
4360             $p--;
4361         }} while (($matchfound = (substr ($s, $p) =~ /(?<=.)$rx/mso))
4362                   && ($matchstart = $-[0] + $p) < $pend
4363                   && !($blob_p
4364                        ? (!$print_blob && !$falses)
4365                        : (!$print_falsepos && !$blobs)));
4366
4367         print "last match before $pend\n" if $verbose;
4368
4369         if ($print_nomatch) {
4370             print substr ($s, $pp, $firstmatchstart - $pp);
4371             $pp = $firstmatchstart;
4372         } elsif (($print_blob || $print_falsepos) && $firstmatchstart > 0) {
4373             $pp = rindex ($s, "\n", $firstmatchstart - 1) + 1;
4374         }
4375
4376         if (($print_blob && $blobs) || ($print_falsepos && $falses)) {
4377             if (!$print_nomatch) {
4378                 for (my $i = $nfilenames; $i-- > 0;) {
4379                     print "::: ", $filenames[$i], " :::\n";
4380                 }
4381             }
4382
4383             print substr ($s, $pp, $pend - $pp);
4384             $pp = $pend;
4385         }
4386
4387         if (($list_blob && $blobs) || ($list_falsepos && $falses)) {
4388             for (my $i = $nfilenames; --$i > 0;) {
4389                 print $filenames[$i], " within ";
4390             }
4391             print $filenames[0], "\n";
4392             exit (1);
4393         }
4394     }
4395
4396     print substr ($s, $pp) if $print_nomatch;
4397
4398     print "no further matches\n" if $verbose;
4399
4400     $s = '';
4401     $nfilenames = $nextnfilenames;
4402 }
4403
4404 exit (0);
4405 EOF
4406
4407   scriptcmd="${PERL-perl} "'"$scriptname"'
4408 }
4409
4410 set_awk_main () {
4411   adjust_rx='
4412 s,[$]$,([\\n]|$),;
4413 s,\[^\],[^\\],g;
4414 s,\\\([{(|)}?+]\),\1,g;
4415 '
4416
4417   case " = $@ = " in
4418   *" = no_falsepos = "*) falsepos='$.^';;
4419   *) falsepos=`
4420     ${SED-sed} -n 's,^[+],,p' < "$regex_name" |
4421     ${SED-sed} -n -e "$adjust_rx" -e 's,\^,,' \
4422         -e '1h; 1!H; $ { g; s,[\n],|,g; p;}'
4423     `
4424      case $falsepos in "") falsepos='$.^';; esac;;
4425   esac
4426
4427   blob=`
4428     ${SED-sed} -n 's,^[-],,p' < "$regex_name" |
4429     ${SED-sed} -n -e "$adjust_rx" \
4430         -e '1h; 1!H; $ { g; s,[\n],|,g; p;}'`
4431
4432   case " = $@ = " in
4433   *" = with_context = "*) cblob=`
4434     $echo "\\($initblob\\|$defineblob\\|$asmblob\\)" |
4435     ${SED-sed} -e "$adjust_rx"
4436    `;;
4437   *) cblob='$.^';;
4438   esac
4439
4440   xrs= nrs="# " eor="RT" eormatch='RT ~ ' eornl='[\n]' eornlsz=1
4441   # Uncomment the line below to disable the use of a regular
4442   # expression for the awk Record Separator, a GNU awk extension.
4443   # Using this extension appears to save a lot of memory for long
4444   # deblob-check runs.
4445   # xrs="# " nrs= eor='$0' eormatch='' eornl= eornlsz=0
4446
4447   cat >> "$scriptname" <<EOF
4448 #! /bin/gawk --re-interval -f
4449
4450 BEGIN {
4451     # Should we replace blobs and false positives with replacement?
4452     replace_blob = 0;
4453     replace_falsepos = 0;
4454     replacement = "/*(DEBLOBBED)*/";
4455
4456     # Should we print lines containing blobs, false positives, and neither?
4457     print_blob = 0;
4458     with_context = 0;
4459     print_falsepos = 0;
4460     print_nomatch = 0;
4461
4462     # Should we print the input stack and exit if we find blobs or
4463     # false positives?
4464     list_blob = 0;
4465     list_falsepos = 0;
4466
4467     # Should we forget everything we know about false positives?
4468     no_falsepos = 0;
4469
4470     verbose = $vp;
4471
4472     nfilenames = 0;
4473     s = "\n";
4474
4475     # Which of the defaults above should we override?
4476     $@ = 1;
4477
4478     # requires GNU awk RS extension:
4479 $xrs    RS = "[;][/][*](begin|end) [^\n]*[*][/][;][\n]";
4480 }
4481 # requires GNU awk RS extension:
4482 $xrs { s = s \$0; }
4483 # does not require GNU awk RS extension:
4484 $nrs !/^[;][/][*].*[*][/][;]$/ {
4485 $nrs     s = s \$0 "\n";
4486 $nrs     next;
4487 $nrs }
4488 $eormatch /^[;][/][*]begin .*[*][/][;]$eornl$/ {
4489     filenames[nfilenames] = substr($eor, 10, length ($eor) - 12 - $eornlsz);
4490     if (verbose) print "entering " nfilenames ": " filenames[nfilenames];
4491     nextnfilenames = nfilenames + 1;
4492     if (s == "\n") {
4493         nfilenames = nextnfilenames;
4494         next;
4495     }
4496 }
4497 $eormatch /^[;][/][*]end .*[*][/][;]$eornl$/ {
4498     nextnfilenames = nfilenames - 1;
4499     if (verbose)
4500         print "got to the end of " nextnfilenames ": " filenames[nextnfilenames];
4501 }
4502 {
4503     if (verbose) {
4504         print "looking for matches";
4505         for (i = nfilenames; --i > 0;)
4506             print filenames[i] " within";
4507         print filenames[0]
4508     }
4509
4510     s = substr (s, 1, length (s) - 1)
4511
4512     pp = 2;
4513     p = pend = 1;
4514     if (verbose > 1) print "searching starting at", substr (s, p, 10)
4515     matchfound = match (substr (s, p),
4516                         /[\n]($falsepos)|[\n]($cblob)|.($blob)/);
4517     while (matchfound) {
4518         blobs = falses = 0;
4519         firstmatchstart = RSTART + p;
4520         for (;;) {
4521             matchstart = RSTART + p - 1;
4522             matchlen = RLENGTH;
4523             if (verbose) {
4524                 print "found match", matchstart, matchlen;
4525                 if (verbose > 1)
4526                     print substr (s, matchstart + 1, matchlen - 1);
4527             }
4528
4529             if (match (substr (s, matchstart, matchlen), /^[\n]($falsepos)/) == 1) {
4530                 matchlen = RLENGTH;
4531                 if (verbose) print "match is a false positive of length", matchlen;
4532                 blob_p = 0;
4533                 falses++;
4534             } else if (match (substr (s, matchstart, matchlen), /^.($blob)/) == 1) {
4535                 matchlen = RLENGTH;
4536                 if (verbose) print "match is a blob of length", matchlen;
4537                 blob_p = 1;
4538                 blobs++;
4539             } else if (match (substr (s, matchstart, matchlen), /^[\n]($cblob)$/) == 1) {
4540                 if (verbose) print "match is a blob context";
4541                 pend = index (substr (s, matchstart + matchlen), "\n");
4542                 if (pend)
4543                     pend += matchstart + matchlen;
4544                 else
4545                     pend = length (s);
4546                 p = matchstart + 1;
4547                 blob_p = 2;
4548                 if (verbose > 1) print "range is:", substr (s, p, pend - p);
4549             }
4550
4551             if (blob_p < 2) {
4552                 if (blob_p ? replace_blob : replace_falsepos) {
4553                     s = substr (s, 1, matchstart)               \\
4554                         replacement                             \\
4555                         substr (s, matchstart + matchlen);
4556                     p = matchstart + length (replacement) - 1;
4557                     pend += (p + 1 - matchstart - matchlen);
4558                 } else
4559                     p = matchstart + matchlen - 1;
4560
4561                 if (p >= pend) {
4562                     i = index (substr (s, p + 1), "\n");
4563                     if (i)
4564                         pend = p + 1 + i;
4565                     else
4566                         pend = length (s)
4567                 }
4568             }
4569
4570             if (verbose) print "search until", pend;
4571
4572             if (!(matchfound = match (substr (s, p),
4573                                       /[\n]($falsepos)|[\n]($cblob)|.($blob)/)) ||
4574                 p + RSTART >= pend ||
4575                 (blob_p ?
4576                  (!print_blob && !falses) :
4577                  (!print_falsepos && !blobs)))
4578                 break;
4579         }
4580
4581         if (print_nomatch)
4582             printf "%s", substr (s, pp, firstmatchstart - pp);
4583         else if (print_blob || print_falsepos) {
4584             lastline = substr (s, pp, firstmatchstart - pp);
4585             sub (/.*[\n]/, "", lastline);
4586             if (verbose) print "lastline: " lastline "\\\\n"
4587             firstmatchstart -= length (lastline);
4588         }
4589         pp = firstmatchstart;
4590
4591         if (verbose) print "match set range:", pp, pend
4592
4593         if ((print_blob && blobs) || (print_falsepos && falses)) {
4594             if (!print_nomatch)
4595                 for (i = nfilenames; i-- > 0;)
4596                     print "::: " filenames[i] " :::";
4597             printf "%s", substr (s, pp, pend - pp);
4598             pp = pend;
4599         }
4600
4601         if ((list_blob && blobs) || (list_falsepos && falses)) {
4602             for (i = nfilenames; --i > 0;)
4603                 print filenames[i] " within";
4604             print filenames[0];
4605             exit (1);
4606         }
4607     }
4608
4609     if (print_nomatch)
4610         printf "%s", substr (s, pp)
4611
4612     if (verbose)
4613         print "no further matches";
4614
4615     s = "\n";
4616     nfilenames = nextnfilenames;
4617     next;
4618 }
4619 EOF
4620
4621   scriptcmd="${AWK-gawk} --re-interval -f "'"$scriptname"'
4622 }
4623
4624 set_flex_main () {
4625   adjust_rx='
4626 s,\\\([{(|)}?+]\),\1,g
4627 s,^\([-+]\)\(\^\?\)\(.*\)\(\$\?\)$,\2(?s:\3)\4\1,g
4628 s,[+]$, { falsepos (); },
4629 s,[-]$, { blob (); },
4630 '
4631
4632   echo '%%' > "$scriptname"
4633   ${SED-sed} "$adjust_rx" < "$regex_name" >> "$scriptname"
4634   echo '\n|. { unmatched (); }
4635 %%
4636 int falsepos () {}
4637 int blob () {}
4638 int unmatched () {}
4639 ' >> "$scriptname"
4640
4641   scriptcmd=false
4642 }
4643
4644 set_save_script_input_main () {
4645   savename=`mktemp -t deblob-check-input-XXXXXX`
4646   scriptcmd="{ echo saving input in $savename && cat > $savename && echo done; }"
4647 }
4648
4649 # Process an input file named in $1 and run it through the blob
4650 # recognizer.  Functions set_except and set_sed_cmd provide additional
4651 # arguments on a per-file and per-action basis.
4652
4653 check () {
4654   case "$#" in 1) ;; *) echo ICE >&2; exit 1;; esac
4655
4656   input=$1
4657
4658   # Add $1 to falsepos.  Its usage makes it implicitly anchored to the
4659   # beginning of the line.  $2, if present, will some day narrow the
4660   # falsepos matches to files that match it.
4661   addx () {
4662     $echo "+^$1" >> $regex_name
4663   }
4664
4665   # Add $1 to falseneg.  Unlike addx, it is NOT implicitly anchored to
4666   # the beginning of the line.  $2, if present, will some day narrow
4667   # the falseneg matches to files that match it.
4668   badx () {
4669     $echo "-$1" >> $regex_name
4670   }
4671
4672   # Look for a multi-line definition starting with a line that matches
4673   # $1 (implicitly anchored to the beginning of the line), and ending
4674   # at the first ';'.  $2 may optionally name the files in which this
4675   # match is to be disregarded as a potential blob.
4676   initnc () {
4677     addx "$1[^;]*[;]\\?" $2
4678   }
4679
4680   # Same as initnc, but require the terminating semicolon.
4681   defsnc () {
4682     addx "$1[^;]*[;]" $2
4683   }
4684
4685   # Look for a multi-line definition starting with a line that matches
4686   # $1 (implicitly anchored to the beginning of the line), and ending
4687   # at the first ';' that's not within comments.
4688   initc () {
4689     addx "$1\\([^;/]\\+\\($comment\\|[/][^/*;]\\)\\+\\)*[^;/]*[;]\\?" $2
4690   }
4691
4692   # Same as initc, but require the terminating semicolon.
4693   defsc () {
4694     addx "$1\\([^;/]\\+\\($comment\\|[/][^/*;]\\)\\+\\)*[^;/]*[;]" $2
4695   }
4696
4697   # Accept as a non-blob an expression $1 that would have otherwise
4698   # triggered blob detection.  The expression must end in a way that
4699   # would trigger the blob detection machinery.
4700   accept () {
4701     addx "$1" $2
4702   }
4703
4704   # Match up to the end a comment started in $1.
4705   ocomment () {
4706     addx "$1[/]*\\([*]*[^*/][/]*\\)*[*]\+[/]" $2
4707   }
4708
4709   # Match $1 followed by backslash-terminated lines and a last
4710   # non-backslash-terminated line.
4711   oprepline () {
4712     addx "$1\\([^\\\\\\n]*[\\\\][\\n]\\)*[^\\\\\\n]*$" $2
4713   }
4714
4715   # Match $1 in $2 as a blob.  Not anchored.
4716   blobna () {
4717     badx "$1" $2
4718   }
4719
4720   # Match $1 as a blob anywhere.  $2 is just for documentation purposes.
4721   blobname () {
4722     badx "$1"
4723   }
4724
4725   # Match $1 in $2 as a blob.  The expectation is a match in the
4726   # beginning of line, but we don't do anchoring of blob patterns ATM.
4727   blob () {
4728     badx "$1" $2
4729   }
4730
4731   regex_name=`mktemp -t deblob-check-regex-XXXXXX`
4732   tempfiles="$regex_name"
4733
4734   set_except "$input"
4735
4736   # Check that all regular expressions match our requirements.
4737   ${SED-sed} -n '
4738 s,^\(-\^\?\|[+]\^\),,
4739 h
4740 s,[$]$,,
4741 s,\([^\\]\|^\)\(\(\\\\\)*\)\(\[^\?[]]\?[^]]\+\]\([*]\|\\[+?]\)\?\(\\\\\)*\)\+,\1\2,g
4742 /\([^\\]\|^\)\(\\\\\)*\([{(|)}?+^$"'"'"';       ]\)\|^$/{
4743   g
4744   i\
4745 BAD regular expression:
4746   p
4747   q 1
4748 }' $regex_name >&2 || exit 1
4749
4750   scriptname=`mktemp -t deblob-check-script-XXXXXX`
4751   tempfiles="$tempfiles $scriptname"
4752
4753   scriptcmd=false
4754   scriptcmd2=
4755
4756   $set_cmd "$input"
4757
4758   for f in $tempfiles; do
4759     case $f in "$scriptname") ;;
4760     *) rm -f "$f" ;;
4761     esac
4762   done
4763   tempfiles="$scriptname"
4764
4765   # Choose the input source...
4766   case $input in
4767   -) in= ;;
4768   *) in='< "$input"' ;;
4769   esac
4770
4771   set fnord # shifted out below
4772
4773   # Decompress as needed...
4774   case $input in
4775   *.bz2) cmd='bunzip2' ;;
4776   *.gz) cmd='gunzip' ;;
4777   *) cmd= ;;
4778   esac
4779   if test -n "$cmd"; then
4780     set "$@" "$cmd"
4781   fi
4782
4783   # Extract or otherwise munge...
4784   case /$input in
4785   *.tar*)
4786     cmd="tar -xf - --to-command='echo \";/*begin \$TAR_FILENAME*/;\"; cat; echo; echo \";/*end \$TAR_FILENAME*/;\"'"
4787     ;;
4788   *.patch | *.patch.*z* | */patch-* | *.diff | *.diff.*z*)
4789     if $reverse_patch; then
4790       s=- r=+
4791     else
4792       s=+ r=-
4793     fi
4794     sedpatch="
4795       /^[$r]/b testlastline;
4796       # /^[*!]/ {
4797       #         s,^,context diffs are not properly supported\\n,;
4798       #         W /dev/stderr
4799       #         d;
4800       # }
4801       /^\\(@@ \\|$s$s$s \\|[^$s @]\\|$\\)/ {
4802         x;
4803         /^@@ /{
4804           s,^,;/*end ,;
4805           s,\\([\\n]\\|$\\),*/;&,;
4806           i\\
4807 ;/**/;
4808
4809           P;
4810           s,^[^\\n]*\\([\\n]\\|$\\),,;
4811         }
4812         x;
4813       }
4814       /^\\($s$s$s \\|[^$s @]\\|$\\)/ {
4815         x;
4816         /^$s$s$s /{
4817           s,^$s$s$s,;/*end,;
4818           s,\\([\\n]\\|$\\),*/;&,;
4819           i\\
4820
4821           P;
4822           s,^[^\\n]*\\([\\n]\\|$\\),,;
4823         }
4824         x;
4825       }
4826       /^$s$s$s / {
4827         H;
4828         x;
4829         s,^[\\n],,;
4830         s,^\\(.*\\)[\\n]\\([^\\n]*\\)$,\\2\\n\\1,;
4831         x;
4832         s,^$s$s$s \\(.*\\)$,;/*begin \\1*/;,;
4833         p;
4834         d;
4835       }
4836       /^@@ / {
4837         H;
4838         x;
4839         s,^[\\n],,;
4840         s,^\\(.*\\)[\\n]\\([^\\n]*\\)$,\\2\\n\\1,;
4841         x;
4842         # A number of patterns for patches depend on the ;/*@@ lines for
4843         # context.
4844         s,^.*$,;/*begin &*/;\\n;/*&*/;,;
4845         p;
4846         d;
4847       }
4848       s,^[ !$s],,
4849       p;
4850       :testlastline
4851       $ {
4852         x;
4853         /^@@ /{
4854           s,^,;/*end ,;
4855           s,\\([\\n]\\|$\\),*/;&,;
4856           i\\
4857 ;/**/;
4858
4859           P;
4860           s,^[^\\n]*\\([\\n]\\|$\\),,;
4861         }
4862         /^$s$s$s /{
4863           s,^$s$s$s,;/*end,;
4864           s,\\([\\n]\\|$\\),*/;&,;
4865           i\\
4866
4867           P;
4868           s,^[^\\n]*\\([\\n]\\|$\\),,;
4869         }
4870         x;
4871       }
4872       d;"
4873     cmd='${SED-sed} "$sedpatch"'
4874     ;;
4875   *)
4876     cmd='cat'
4877     ;;
4878   esac
4879   cmd="{ echo \";/*begin $input*/;\"; $cmd; echo; echo \";/*end $input*/;\"; }"
4880   set "$@" "$cmd"
4881
4882   case $input in
4883   *.tar*)
4884     cmd="{ cat; cat > /dev/null; }"
4885     set "$@" "$cmd"
4886     ;;
4887   esac
4888
4889   # Then run through the selected action.
4890   set "$@" "$scriptcmd"
4891
4892   case $scriptcmd2 in "" | cat) ;;
4893   *) set "$@" "$scriptcmd2"
4894   esac
4895
4896   # test $# = 1 || set "$@" "cat"
4897
4898   shift # fnord goes out here
4899
4900   pipe=
4901   for cmd
4902   do
4903     if test -z "$pipe"; then
4904       pipe="$cmd $in"
4905     else
4906       pipe="$pipe | $cmd"
4907     fi
4908   done
4909
4910   eval "$pipe"
4911   status=$?
4912
4913   $rm $tempfiles
4914   tempfiles=
4915
4916   (exit $status)
4917 }
4918
4919 # If no input given, use stdin.
4920 case $# in
4921 0)
4922   test -t 0 && echo reading from standard input >&2
4923   set fnord -
4924   shift
4925   ;;
4926 esac
4927
4928 # The lines below commented out out #list: can be used to get a list
4929 # of matching inputs.  ATM this is useless, so we just use a shell
4930 # boolean.
4931
4932 #list: n=$#
4933 pass=:
4934
4935 tempfiles=
4936 trap "status=$?; test -z \"$tempfiles\" || rm -f $tempfiles; (exit $status); exit" 0 1 2 15
4937
4938 process_arg=
4939
4940 # Go through each of the input files in the command line.
4941 for file
4942 do
4943   case $process_arg in
4944   "") ;;
4945   --implied-prefix | --prefix | -i)
4946     prefix=$file
4947     case $prefix in
4948     /*/) ;;
4949     */) prefix=/$prefix ;;
4950     /*) prefix=$prefix/ ;;
4951     *) prefix=/$prefix/ ;;
4952     esac
4953     process_arg=
4954     continue
4955     ;;
4956   *)
4957     echo Internal error with process_arg=$process_arg >&2
4958     exit 1
4959     ;;
4960   esac
4961
4962   case $sawdashdash$file in
4963   --implied-prefix | --prefix | -i)
4964     process_arg=$file
4965     continue
4966     ;;
4967   esac
4968
4969   # If we print anything whatsoever (even a blank line) while
4970   # processing it, we've failed.
4971   if check "$file"; then
4972     :
4973   else
4974     pass=false
4975     #list: set fnord "$@" "$file"
4976     #list: shift
4977   fi
4978 done
4979
4980 case $process_arg in
4981 "") ;;
4982 *)
4983   echo Missing argument to $process_arg >&2
4984   exit 1
4985   ;;
4986 esac
4987
4988 #list: shift $n
4989
4990 #list: exec test $# = 0
4991 $pass
4992 exit