Lines Matching refs:seq
125 dev->seq = -1; in device_bind_common()
409 int seq; in device_probe() local
467 seq = uclass_resolve_seq(dev); in device_probe()
468 if (seq < 0) { in device_probe()
469 ret = seq; in device_probe()
472 dev->seq = seq; in device_probe()
527 dev->seq = -1; in device_probe()
630 if ((find_req_seq ? dev->req_seq : dev->seq) == in device_find_child_by_seq()
640 int device_get_child_by_seq(struct udevice *parent, int seq, in device_get_child_by_seq() argument
647 ret = device_find_child_by_seq(parent, seq, false, &dev); in device_get_child_by_seq()
653 ret = device_find_child_by_seq(parent, seq, true, &dev); in device_get_child_by_seq()