Lines Matching refs:compat
90 unsigned long node, const char *compat) in of_fdt_is_compatible() argument
101 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) in of_fdt_is_compatible()
134 const char *const *compat) in of_fdt_match() argument
138 if (!compat) in of_fdt_match()
141 while (*compat) { in of_fdt_match()
142 tmp = of_fdt_is_compatible(blob, node, *compat); in of_fdt_match()
145 compat++; in of_fdt_match()
663 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat) in of_flat_dt_is_compatible() argument
665 return of_fdt_is_compatible(initial_boot_params, node, compat); in of_flat_dt_is_compatible()
671 int __init of_flat_dt_match(unsigned long node, const char *const *compat) in of_flat_dt_match() argument
673 return of_fdt_match(initial_boot_params, node, compat); in of_flat_dt_match()
710 const char *const *compat; in of_flat_dt_match_machine() local
715 while ((data = get_next_compat(&compat))) { in of_flat_dt_match_machine()
716 score = of_flat_dt_match(dt_root, compat); in of_flat_dt_match_machine()