Lines Matching +full:- +full:a +full:- +full:z0 +full:- +full:9
2 # SPDX-License-Identifier: GPL-2.0-only
13 # CPU_METHOD_OF_DECLARE does not have a compatible string
43 for m in re.finditer(r'\.of_match_table\s+=\s+(of_match_ptr\()?([a-zA-Z0-9_-]+)', data):
50 """ Find all compatibles in the last argument of a given function """
52 for m in re.finditer(rf'{func_name}\(([a-zA-Z0-9_>\(\)"\-]+,\s)*"([a-zA-Z0-9_,-]+)"\)', data):
59 with open(file, 'r', encoding='utf-8') as f:
63 # For a compatible in the DT to be matched to a driver it needs to show
64 # up in a driver's of_match_table
80 with open(file, 'r', encoding='utf-8') as f:
84 # match a driver, except for the _DRIVER ones.
120 …ap.add_argument('-H', '--with-filename', help="Print filename with compatibles", action="store_tru…
121 …ap.add_argument('-d', '--driver-match', help="Only print compatibles that should match to a driver…