Lines Matching refs:matches
50 soc_device_match(const struct soc_attr *matches) in soc_device_match() argument
56 if (!matches) in soc_device_match()
63 if (!(matches->machine || matches->family || in soc_device_match()
64 matches->revision)) in soc_device_match()
69 if (matches->machine) { in soc_device_match()
71 if (strcmp(matches->machine, str)) in soc_device_match()
76 if (matches->family) { in soc_device_match()
78 if (strcmp(matches->family, str)) in soc_device_match()
83 if (matches->revision) { in soc_device_match()
85 if (strcmp(matches->revision, str)) in soc_device_match()
91 return matches; in soc_device_match()
93 matches++; in soc_device_match()