From 17523ef7bfae5a98f061e13916f25f64eacfb835 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Thu, 6 Jun 2013 16:52:09 +0100 Subject: list-workarounds: Some workarounds start with WA, not Wa Signed-off-by: Damien Lespiau --- scripts/list-workarounds | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/list-workarounds') 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('(?PWa[A-Z0-9][a-zA-Z0-9_]+):(?P[a-z,]+)') -waname_re = re.compile('(?PWa[A-Z0-9][a-zA-Z0-9_]+)') +wa_re = re.compile('(?PW[aA][A-Z0-9][a-zA-Z0-9_]+):(?P[a-z,]+)') +waname_re = re.compile('(?PW[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: -- cgit v1.2.3