diff options
author | greg@kroah.com <greg@kroah.com> | 2004-10-12 00:47:27 -0700 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:37:04 -0700 |
commit | 8372907752159970c86c3f7cc565c35cf2fa1ef9 (patch) | |
tree | ffa10a17474ffe87789b6285e0a10a7d67d27693 | |
parent | 10eb67ec70bf1a41dd1b94fc74a952e3845ab59b (diff) |
[PATCH] added ieee1394 support to wait_for_sysfs
-rw-r--r-- | wait_for_sysfs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wait_for_sysfs.c b/wait_for_sysfs.c index 86422c24c0..bce60731fa 100644 --- a/wait_for_sysfs.c +++ b/wait_for_sysfs.c @@ -64,6 +64,9 @@ static int wait_for_class_device_attributes(struct sysfs_class_device *class_dev { .subsystem = "bluetooth", .file = "address" }, { .subsystem = "i2c-adapter", .file = NULL }, { .subsystem = "pci_bus", .file = NULL }, + { .subsystem = "ieee1394", .file = NULL }, + { .subsystem = "ieee1394_host", .file = NULL }, + { .subsystem = "ieee1394_node", .file = NULL }, { NULL, NULL } }; struct class_file *classfile; @@ -144,6 +147,9 @@ static int class_device_expect_no_device_link(struct sysfs_class_device *class_d { .subsystem = "firmware", .device = NULL }, { .subsystem = "drm", .device = NULL }, { .subsystem = "pci_bus", .device = NULL }, + { .subsystem = "ieee1394", .device = NULL }, + { .subsystem = "ieee1394_host", .device = NULL }, + { .subsystem = "ieee1394_node", .device = NULL }, { NULL, NULL } }; struct class_device *classdevice; |