From 3821339d2d0f515313b31f0b7e9bd158626e2bec Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Thu, 26 May 2011 17:39:32 +0200 Subject: [PATCH] path_id: allow to be asked about usb_devices not only usb_interfaces --- extras/path_id/path_id.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extras/path_id/path_id.c b/extras/path_id/path_id.c index 62d26d8c4..683f78d26 100644 --- a/extras/path_id/path_id.c +++ b/extras/path_id/path_id.c @@ -355,7 +355,9 @@ static struct udev_device *handle_usb(struct udev_device *parent, char **path) const char *port; devtype = udev_device_get_devtype(parent); - if (devtype == NULL || strcmp(devtype, "usb_interface") != 0) + if (devtype == NULL) + return parent; + if (strcmp(devtype, "usb_interface") != 0 && strcmp(devtype, "usb_device") != 0) return parent; str = udev_device_get_sysname(parent); -- 2.30.2