Lines Matching refs:compat
91 unsigned long node, const char *compat) in of_fdt_is_compatible() argument
102 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) in of_fdt_is_compatible()
135 const char *const *compat) in of_fdt_match() argument
139 if (!compat) in of_fdt_match()
142 while (*compat) { in of_fdt_match()
143 tmp = of_fdt_is_compatible(blob, node, *compat); in of_fdt_match()
146 compat++; in of_fdt_match()
680 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat) in of_flat_dt_is_compatible() argument
682 return of_fdt_is_compatible(initial_boot_params, node, compat); in of_flat_dt_is_compatible()
688 int __init of_flat_dt_match(unsigned long node, const char *const *compat) in of_flat_dt_match() argument
690 return of_fdt_match(initial_boot_params, node, compat); in of_flat_dt_match()
727 const char *const *compat; in of_flat_dt_match_machine() local
732 while ((data = get_next_compat(&compat))) { in of_flat_dt_match_machine()
733 score = of_flat_dt_match(dt_root, compat); in of_flat_dt_match_machine()