From 2441c20743e62f135d1b52cb3fa47b29d59fbef6 Mon Sep 17 00:00:00 2001 From: "kay.sievers@vrfy.org" Date: Tue, 30 Dec 2003 01:07:55 -0800 Subject: [PATCH] [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... --- namedev.c | 1 + 1 file changed, 1 insertion(+) 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" }, {} }; -- 2.30.2