mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
usb: dm: Add a usb_for_each_root_dev() helper function
Iterating over usb-root devs and doing something for all of them is a bit tricky with dm, factor out the proven usb_show_tree() for this into a helper function. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:

committed by
Marek Vasut

parent
e8009beff6
commit
2138fd6d5d
15
cmd/usb.c
15
cmd/usb.c
@ -438,9 +438,11 @@ static void usb_show_subtree(struct usb_device *dev)
|
|||||||
usb_show_tree_graph(dev, &preamble[0]);
|
usb_show_tree_graph(dev, &preamble[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void usb_show_tree(void)
|
|
||||||
{
|
|
||||||
#ifdef CONFIG_DM_USB
|
#ifdef CONFIG_DM_USB
|
||||||
|
typedef void (*usb_dev_func_t)(struct usb_device *udev);
|
||||||
|
|
||||||
|
static void usb_for_each_root_dev(usb_dev_func_t func)
|
||||||
|
{
|
||||||
struct udevice *bus;
|
struct udevice *bus;
|
||||||
|
|
||||||
for (uclass_find_first_device(UCLASS_USB, &bus);
|
for (uclass_find_first_device(UCLASS_USB, &bus);
|
||||||
@ -455,9 +457,16 @@ void usb_show_tree(void)
|
|||||||
device_find_first_child(bus, &dev);
|
device_find_first_child(bus, &dev);
|
||||||
if (dev && device_active(dev)) {
|
if (dev && device_active(dev)) {
|
||||||
udev = dev_get_parent_priv(dev);
|
udev = dev_get_parent_priv(dev);
|
||||||
usb_show_subtree(udev);
|
func(udev);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void usb_show_tree(void)
|
||||||
|
{
|
||||||
|
#ifdef CONFIG_DM_USB
|
||||||
|
usb_for_each_root_dev(usb_show_subtree);
|
||||||
#else
|
#else
|
||||||
struct usb_device *udev;
|
struct usb_device *udev;
|
||||||
int i;
|
int i;
|
||||||
|
Reference in New Issue
Block a user