diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2013-06-06 16:52:09 +0100 |
---|---|---|
committer | Damien Lespiau <damien.lespiau@intel.com> | 2013-06-06 16:52:56 +0100 |
commit | 17523ef7bfae5a98f061e13916f25f64eacfb835 (patch) | |
tree | dff05e9825027429038146c3b5adccff2caaf553 /scripts | |
parent | 528b1f381c4e67c2e63e23b5597070fffe8033d6 (diff) |
list-workarounds: Some workarounds start with WA, not Wa
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/list-workarounds | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/list-workarounds b/scripts/list-workarounds index 3514aed1..51a66c9b 100755 --- a/scripts/list-workarounds +++ b/scripts/list-workarounds @@ -25,8 +25,8 @@ def parse_platforms(p): sys.stdout.write("unknown platform %s\n" % p) return l -wa_re = re.compile('(?P<name>Wa[A-Z0-9][a-zA-Z0-9_]+):(?P<platforms>[a-z,]+)') -waname_re = re.compile('(?P<name>Wa[A-Z0-9][a-zA-Z0-9_]+)') +wa_re = re.compile('(?P<name>W[aA][A-Z0-9][a-zA-Z0-9_]+):(?P<platforms>[a-z,]+)') +waname_re = re.compile('(?P<name>W[aA][A-Z0-9][a-zA-Z0-9_]+)') def parse(me): for line in me.splitlines(): match = wa_re.search(str(line)) @@ -95,7 +95,7 @@ if __name__ == '__main__': olddir = os.getcwd() os.chdir(kernel_path) work_arounds, err = execute(['git', 'grep', '-n', - '-e', 'Wa[A-Z0-9][a-zA-Z0-9_]\+', + '-e', 'W[aA][A-Z0-9][a-zA-Z0-9_]\+', i915_dir]) os.chdir(olddir) if err: |