diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2003-12-30 01:07:55 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:11 -0700 |
commit | 2441c20743e62f135d1b52cb3fa47b29d59fbef6 (patch) | |
tree | 020c9012789437f1127b7571b78bdfe541c77fb7 /namedev.c | |
parent | 3c90f15174e30a39e4dc05b5c99c647ef0623973 (diff) |
[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...
Diffstat (limited to 'namedev.c')
-rw-r--r-- | namedev.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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" }, {} }; |