From 3821339d2d0f515313b31f0b7e9bd158626e2bec Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Thu, 26 May 2011 17:39:32 +0200 Subject: 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(-) (limited to 'extras') diff --git a/extras/path_id/path_id.c b/extras/path_id/path_id.c index 62d26d8c4d..683f78d26e 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); -- cgit v1.2.3-54-g00ecf