Lines Matching refs:check

41 struct check;
43 typedef void (*check_fn)(struct check *c, struct dt_info *dti, struct node *node);
45 struct check { struct
53 struct check **prereq; argument
57 static struct check *nm_##_prereqs[] = { __VA_ARGS__ }; \
58 static struct check nm_ = { \
75 static inline void PRINTF(5, 6) check_msg(struct check *c, struct dt_info *dti, in check_msg()
114 static void check_nodes_props(struct check *c, struct dt_info *dti, struct node *node) in check_nodes_props()
126 static bool run_check(struct check *c, struct dt_info *dti) in run_check()
140 struct check *prq = c->prereq[i]; in run_check()
171 static inline void check_always_fail(struct check *c, struct dt_info *dti, in check_always_fail()
178 static void check_is_string(struct check *c, struct dt_info *dti, in check_is_string()
196 static void check_is_string_list(struct check *c, struct dt_info *dti, in check_is_string_list()
225 static void check_is_cell(struct check *c, struct dt_info *dti, in check_is_cell()
247 static void check_duplicate_node_names(struct check *c, struct dt_info *dti, in check_duplicate_node_names()
261 static void check_duplicate_property_names(struct check *c, struct dt_info *dti, in check_duplicate_property_names()
283 static void check_node_name_chars(struct check *c, struct dt_info *dti, in check_node_name_chars()
294 static void check_node_name_chars_strict(struct check *c, struct dt_info *dti, in check_node_name_chars_strict()
305 static void check_node_name_format(struct check *c, struct dt_info *dti, in check_node_name_format()
313 static void check_unit_address_vs_reg(struct check *c, struct dt_info *dti, in check_unit_address_vs_reg()
340 static void check_property_name_chars(struct check *c, struct dt_info *dti, in check_property_name_chars()
355 static void check_property_name_chars_strict(struct check *c, in check_property_name_chars_strict()
394 static void check_duplicate_label(struct check *c, struct dt_info *dti, in check_duplicate_label()
421 static void check_duplicate_label_node(struct check *c, struct dt_info *dti, in check_duplicate_label_node()
442 static cell_t check_phandle_prop(struct check *c, struct dt_info *dti, in check_phandle_prop()
489 static void check_explicit_phandles(struct check *c, struct dt_info *dti, in check_explicit_phandles()
525 static void check_name_properties(struct check *c, struct dt_info *dti, in check_name_properties()
559 static void fixup_phandle_references(struct check *c, struct dt_info *dti, in fixup_phandle_references()
594 static void fixup_path_references(struct check *c, struct dt_info *dti, in fixup_path_references()
625 static void fixup_omit_unused_nodes(struct check *c, struct dt_info *dti, in fixup_omit_unused_nodes()
647 static void check_names_is_string_list(struct check *c, struct dt_info *dti, in check_names_is_string_list()
663 static void check_alias_paths(struct check *c, struct dt_info *dti, in check_alias_paths()
683 static void fixup_addr_size_cells(struct check *c, struct dt_info *dti, in fixup_addr_size_cells()
707 static void check_reg_format(struct check *c, struct dt_info *dti, in check_reg_format()
736 static void check_ranges_format(struct check *c, struct dt_info *dti, in check_ranges_format()
781 static void check_pci_bridge(struct check *c, struct dt_info *dti, struct node *node) in check_pci_bridge()
823 static void check_pci_device_bus_num(struct check *c, struct dt_info *dti, struct node *node) in check_pci_device_bus_num()
853 static void check_pci_device_reg(struct check *c, struct dt_info *dti, struct node *node) in check_pci_device_reg()
919 static void check_simple_bus_bridge(struct check *c, struct dt_info *dti, struct node *node) in check_simple_bus_bridge()
926 static void check_simple_bus_reg(struct check *c, struct dt_info *dti, struct node *node) in check_simple_bus_reg()
965 static void check_unit_address_format(struct check *c, struct dt_info *dti, in check_unit_address_format()
990 static void check_avoid_default_addr_size(struct check *c, struct dt_info *dti, in check_avoid_default_addr_size()
1013 static void check_avoid_unnecessary_addr_size(struct check *c, struct dt_info *dti, in check_avoid_unnecessary_addr_size()
1037 static void check_unique_unit_address(struct check *c, struct dt_info *dti, in check_unique_unit_address()
1067 static void check_obsolete_chosen_interrupt_controller(struct check *c, in check_obsolete_chosen_interrupt_controller()
1090 static void check_chosen_node_is_root(struct check *c, struct dt_info *dti, in check_chosen_node_is_root()
1101 static void check_chosen_node_bootargs(struct check *c, struct dt_info *dti, in check_chosen_node_bootargs()
1118 static void check_chosen_node_stdout_path(struct check *c, struct dt_info *dti, in check_chosen_node_stdout_path()
1145 static void check_property_phandle_args(struct check *c, in check_property_phandle_args()
1222 static void check_provider_cells_property(struct check *c, in check_provider_cells_property()
1278 static void check_gpios_property(struct check *c, in check_gpios_property()
1303 static void check_deprecated_gpio_property(struct check *c, in check_deprecated_gpio_property()
1340 static void check_interrupts_property(struct check *c, in check_interrupts_property()
1414 static void check_graph_nodes(struct check *c, struct dt_info *dti, in check_graph_nodes()
1437 static void check_graph_child_address(struct check *c, struct dt_info *dti, in check_graph_child_address()
1462 static void check_graph_reg(struct check *c, struct dt_info *dti, in check_graph_reg()
1493 static void check_graph_port(struct check *c, struct dt_info *dti, in check_graph_port()
1506 static struct node *get_remote_endpoint(struct check *c, struct dt_info *dti, in get_remote_endpoint()
1529 static void check_graph_endpoint(struct check *c, struct dt_info *dti, in check_graph_endpoint()
1552 static struct check *check_table[] = {
1618 static void enable_warning_error(struct check *c, bool warn, bool error) in enable_warning_error()
1631 static void disable_warning_error(struct check *c, bool warn, bool error) in disable_warning_error()
1639 struct check *cc = check_table[i]; in disable_warning_error()
1665 struct check *c = check_table[i]; in parse_checks_option()
1685 struct check *c = check_table[i]; in process_checks()