From 7a0643a93f53cd5e7a05ae3d0c384e9e3160a94f Mon Sep 17 00:00:00 2001 From: "kay.sievers@vrfy.org" Date: Tue, 23 Nov 2004 03:55:24 +0100 Subject: [PATCH] [PATCH] add support for /devices-devices without any file to wait for --- udev_sysfs.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/udev_sysfs.c b/udev_sysfs.c index a25223ef4..7293407be 100644 --- a/udev_sysfs.c +++ b/udev_sysfs.c @@ -267,6 +267,7 @@ int wait_for_devices_device(struct sysfs_device *devices_dev, const char *file; } device_files[] = { { .bus = "scsi", .file = "vendor" }, + { .bus = "usb", .file = NULL }, { .bus = "usb", .file = "idVendor" }, { .bus = "usb", .file = "iInterface" }, { .bus = "usb", .file = "bNumEndpoints" }, @@ -278,7 +279,7 @@ int wait_for_devices_device(struct sysfs_device *devices_dev, { .bus = "ieee1394", .file = "node_count" }, { .bus = "ieee1394", .file = "nodeid" }, { .bus = "ieee1394", .file = "address" }, - { .bus = "bttv-sub", .file = "detach_state" }, + { .bus = "bttv-sub", .file = NULL }, { .bus = "pnp", .file = "detach_state" }, { .bus = "eisa", .file = "detach_state" }, { .bus = "pseudo", .file = "detach_state" }, @@ -338,6 +339,11 @@ int wait_for_devices_device(struct sysfs_device *devices_dev, char filename[SYSFS_PATH_MAX]; struct stat stats; + if (devicefile->file == NULL) { + dbg("bus '%s' has no file to wait for", devices_dev->bus); + return 0; + } + found_bus_type = 1; snprintf(filename, SYSFS_PATH_MAX-1, "%s/%s", devices_dev->path, devicefile->file); dbg("looking at bus '%s' device for specific file '%s'", devices_dev->bus, filename); -- 2.30.2