Lines Matching refs:seq
380 int seq, len, method_flags; in label_to_uclass() local
385 seq = trailing_strtoln_end(label, NULL, &end); in label_to_uclass()
390 log_debug("find %s: seq=%d, id=%d/%s\n", label, seq, id, in label_to_uclass()
411 *seqp = seq; in label_to_uclass()
421 int seq, ret, method_flags = 0; in bootdev_find_by_label() local
426 ret = label_to_uclass(label, &seq, &method_flags); in bootdev_find_by_label()
437 if (seq != -1 && dev_seq(media) != seq) { in bootdev_find_by_label()
445 log_debug("- looking via blk, seq=%d, id=%d\n", seq, in bootdev_find_by_label()
447 ret = blk_find_device(id, seq, &blk); in bootdev_find_by_label()
461 if (IS_ENABLED(CONFIG_BOOTSTD_FULL) && seq == -1) in bootdev_find_by_label()
478 int ret = -ENODEV, seq; in bootdev_find_by_any() local
481 seq = simple_strtol(name, &endp, 16); in bootdev_find_by_any()
501 ret = uclass_get_device_by_seq(UCLASS_BOOTDEV, seq, &dev); in bootdev_find_by_any()
752 static int bootdev_hunt_drv(struct bootdev_hunter *info, uint seq, bool show) in bootdev_hunt_drv() argument
762 if (!(std->hunters_used & BIT(seq))) { in bootdev_hunt_drv()
772 std->hunters_used |= BIT(seq); in bootdev_hunt_drv()