Lines Matching defs:out_args
754 struct of_phandle_args out_args;
760 ret = of_parse_phandle_with_fixed_args(np, phandle_name, 1, 0, &out_args);
764 if (!of_match_node(tsa_driver.driver.of_match_table, out_args.np)) {
765 of_node_put(out_args.np);
769 pdev = of_find_device_by_node(out_args.np);
770 of_node_put(out_args.np);
780 if (out_args.args_count != 1) {
785 if (out_args.args[0] >= ARRAY_SIZE(tsa->serials)) {
790 tsa_serial = &tsa->serials[out_args.args[0]];
797 if (WARN_ON(tsa_serial->id != out_args.args[0])) {