Lines Matching defs:name
18 * @name: name of the property
25 static int parse_timing_property(const struct device_node *np, const char *name,
31 prop = of_find_property(np, name, &length);
33 pr_err("%pOF: could not find property %s\n", np, name);
39 ret = of_property_read_u32(np, name, &result->typ);
43 ret = of_property_read_u32_array(np, name, &result->min, cells);
45 pr_err("%pOF: illegal timing specification in %s\n", np, name);
115 * @name: name of the timing node
118 int of_get_display_timing(const struct device_node *np, const char *name,
127 timing_np = of_get_child_by_name(np, name);