Lines Matching refs:compat
93 unsigned long node, const char *compat) in of_fdt_is_compatible() argument
104 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) in of_fdt_is_compatible()
150 const char *const *compat) in of_fdt_match() argument
154 if (!compat) in of_fdt_match()
157 while (*compat) { in of_fdt_match()
158 tmp = of_fdt_is_compatible(blob, node, *compat); in of_fdt_match()
161 compat++; in of_fdt_match()
804 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat) in of_flat_dt_is_compatible() argument
806 return of_fdt_is_compatible(initial_boot_params, node, compat); in of_flat_dt_is_compatible()
812 int __init of_flat_dt_match(unsigned long node, const char *const *compat) in of_flat_dt_match() argument
814 return of_fdt_match(initial_boot_params, node, compat); in of_flat_dt_match()
859 const char *const *compat; in of_flat_dt_match_machine() local
864 while ((data = get_next_compat(&compat))) { in of_flat_dt_match_machine()
865 score = of_flat_dt_match(dt_root, compat); in of_flat_dt_match_machine()