From: kay.sievers@vrfy.org Date: Tue, 30 Dec 2003 09:07:55 +0000 (-0800) Subject: [PATCH] 'ide' missing in bus_files[] X-Git-Tag: 012~23 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=2441c20743e62f135d1b52cb3fa47b29d59fbef6 [PATCH] 'ide' missing in bus_files[] my syslog want's to contact you :) Dec 25 20:37:48 pim udev[2274]: wait_for_device_to_initialize: Did not find bus type 'ide' on list of bus_id_files, contact greg@kroah.com We need to put 'ide' to the bus_files array, don't know which file to use... --- diff --git a/namedev.c b/namedev.c index 813f26b03..949c2eedf 100644 --- a/namedev.c +++ b/namedev.c @@ -252,6 +252,7 @@ static struct bus_file { } bus_files[] = { { .bus = "scsi", .file = "vendor" }, { .bus = "usb", .file = "idVendor" }, + { .bus = "ide", .file = "detach_state" }, { .bus = "pci", .file = "vendor" }, {} };