Lines Matching refs:compat
639 unsigned long node, const char *compat) in of_fdt_is_compatible() argument
650 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) in of_fdt_is_compatible()
665 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat) in of_flat_dt_is_compatible() argument
667 return of_fdt_is_compatible(initial_boot_params, node, compat); in of_flat_dt_is_compatible()
673 static int __init of_flat_dt_match(unsigned long node, const char *const *compat) in of_flat_dt_match() argument
677 if (!compat) in of_flat_dt_match()
680 while (*compat) { in of_flat_dt_match()
681 tmp = of_fdt_is_compatible(initial_boot_params, node, *compat); in of_flat_dt_match()
684 compat++; in of_flat_dt_match()
723 const char *const *compat; in of_flat_dt_match_machine() local
728 while ((data = get_next_compat(&compat))) { in of_flat_dt_match_machine()
729 score = of_flat_dt_match(dt_root, compat); in of_flat_dt_match_machine()