• Home
  • Raw
  • Download

Lines Matching refs:check

41 struct check;
43 typedef void (*tree_check_fn)(struct check *c, struct node *dt);
44 typedef void (*node_check_fn)(struct check *c, struct node *dt, struct node *node);
45 typedef void (*prop_check_fn)(struct check *c, struct node *dt,
48 struct check { struct
58 struct check **prereq; argument
62 static struct check *nm##_prereqs[] = { __VA_ARGS__ }; \
63 static struct check nm = { \
102 static inline void check_msg(struct check *c, const char *fmt, ...) __attribute__((format (printf, …
104 static inline void check_msg(struct check *c, const char *fmt, ...) in check_msg()
126 static void check_nodes_props(struct check *c, struct node *dt, struct node *node) in check_nodes_props()
145 static bool run_check(struct check *c, struct node *dt) in run_check()
158 struct check *prq = c->prereq[i]; in run_check()
192 static inline void check_always_fail(struct check *c, struct node *dt) in check_always_fail()
198 static void check_is_string(struct check *c, struct node *root, in check_is_string()
217 static void check_is_cell(struct check *c, struct node *root, in check_is_cell()
240 static void check_duplicate_node_names(struct check *c, struct node *dt, in check_duplicate_node_names()
255 static void check_duplicate_property_names(struct check *c, struct node *dt, in check_duplicate_property_names()
277 static void check_node_name_chars(struct check *c, struct node *dt, in check_node_name_chars()
288 static void check_node_name_format(struct check *c, struct node *dt, in check_node_name_format()
297 static void check_unit_address_vs_reg(struct check *c, struct node *dt, in check_unit_address_vs_reg()
321 static void check_property_name_chars(struct check *c, struct node *dt, in check_property_name_chars()
339 static void check_duplicate_label(struct check *c, struct node *dt, in check_duplicate_label()
365 static void check_duplicate_label_node(struct check *c, struct node *dt, in check_duplicate_label_node()
373 static void check_duplicate_label_prop(struct check *c, struct node *dt, in check_duplicate_label_prop()
388 static void check_explicit_phandles(struct check *c, struct node *root, in check_explicit_phandles()
447 static void check_name_properties(struct check *c, struct node *root, in check_name_properties()
481 static void fixup_phandle_references(struct check *c, struct node *dt, in fixup_phandle_references()
505 static void fixup_path_references(struct check *c, struct node *dt, in fixup_path_references()
541 static void fixup_addr_size_cells(struct check *c, struct node *dt, in fixup_addr_size_cells()
565 static void check_reg_format(struct check *c, struct node *dt, in check_reg_format()
594 static void check_ranges_format(struct check *c, struct node *dt, in check_ranges_format()
638 static void check_avoid_default_addr_size(struct check *c, struct node *dt, in check_avoid_default_addr_size()
662 static void check_obsolete_chosen_interrupt_controller(struct check *c, in check_obsolete_chosen_interrupt_controller()
679 static struct check *check_table[] = {
702 static void enable_warning_error(struct check *c, bool warn, bool error) in enable_warning_error()
715 static void disable_warning_error(struct check *c, bool warn, bool error) in disable_warning_error()
723 struct check *cc = check_table[i]; in disable_warning_error()
749 struct check *c = check_table[i]; in parse_checks_option()
770 struct check *c = check_table[i]; in process_checks()