• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/dtc/

Lines Matching refs:check

47 struct check;
49 typedef void (*tree_check_fn)(struct check *c, struct node *dt);
50 typedef void (*node_check_fn)(struct check *c, struct node *dt, struct node *node);
51 typedef void (*prop_check_fn)(struct check *c, struct node *dt,
54 struct check {
64 struct check **prereq;
68 static struct check *nm##_prereqs[] = { __VA_ARGS__ }; \
69 static struct check nm = { \
91 static inline void check_msg(struct check *c, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
93 static inline void check_msg(struct check *c, const char *fmt, ...)
114 static void check_nodes_props(struct check *c, struct node *dt, struct node *node)
133 static int run_check(struct check *c, struct node *dt)
146 struct check *prq = c->prereq[i];
176 * Utility check functions
179 static void check_is_string(struct check *c, struct node *root,
196 static void check_is_cell(struct check *c, struct node *root,
214 * Structural check functions
217 static void check_duplicate_node_names(struct check *c, struct node *dt,
232 static void check_duplicate_property_names(struct check *c, struct node *dt,
250 static void check_node_name_chars(struct check *c, struct node *dt,
261 static void check_node_name_format(struct check *c, struct node *dt,
270 static void check_property_name_chars(struct check *c, struct node *dt,
281 static void check_explicit_phandles(struct check *c, struct node *root,
316 static void check_name_properties(struct check *c, struct node *root,
350 static void fixup_phandle_references(struct check *c, struct node *dt,
374 static void fixup_path_references(struct check *c, struct node *dt,
410 static void fixup_addr_size_cells(struct check *c, struct node *dt,
434 static void check_reg_format(struct check *c, struct node *dt,
463 static void check_ranges_format(struct check *c, struct node *dt,
507 static void check_avoid_default_addr_size(struct check *c, struct node *dt,
531 static void check_obsolete_chosen_interrupt_controller(struct check *c,
548 static struct check *check_table[] = {
571 struct check *c = check_table[i];