提交 1b6a1dff 编写于 作者: S Simon Glass

Revert "dm: usb: Rename usb_find_child to usb_find_emul_child"

This reverts commit 9b510df7.

We want to avoid having the USB stack rely on unbind.
Signed-off-by: NSimon Glass <sjg@chromium.org>
上级 af9c7c11
......@@ -494,14 +494,15 @@ error:
}
/**
* usb_find_emul_child() - Find an existing device for emulated devices
* usb_find_child() - Find an existing device which matches our needs
*
*
*/
static int usb_find_emul_child(struct udevice *parent,
struct usb_device_descriptor *desc,
struct usb_interface_descriptor *iface,
struct udevice **devp)
static int usb_find_child(struct udevice *parent,
struct usb_device_descriptor *desc,
struct usb_interface_descriptor *iface,
struct udevice **devp)
{
#ifdef CONFIG_SANDBOX
struct udevice *dev;
*devp = NULL;
......@@ -520,7 +521,7 @@ static int usb_find_emul_child(struct udevice *parent,
return 0;
}
}
#endif
return -ENOENT;
}
......@@ -580,8 +581,8 @@ int usb_scan_device(struct udevice *parent, int port,
debug("read_descriptor for '%s': ret=%d\n", parent->name, ret);
if (ret)
return ret;
ret = usb_find_emul_child(parent, &udev->descriptor, iface, &dev);
debug("** usb_find_emul_child returns %d\n", ret);
ret = usb_find_child(parent, &udev->descriptor, iface, &dev);
debug("** usb_find_child returns %d\n", ret);
if (ret) {
if (ret != -ENOENT)
return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册