On Thu, 18 Aug 2005 18:37:58 +0200, Steve Underwood <ste...@coppice.org>
wrote:
A driver for this chip is sitting in the modules directory of my FC4
system. However, I can't figure out how to make the module associate
with plugging in the device. The vendor ID is TI, but the product ID has
been changed form the generic TUSB3410, to differentiate the FET tool
from a plain serial port. I tried putting the new product ID in an entry
in /etc/hotplug/usb.handmap like some instructions told me, but it
doesn't seem to work. Are there any experts out there. I've never really
touched the hotplug stuff before.
Perhaps you can make it working by adding the new device id to
static struct usb_device_id ti_id_table_3410[1+TI_EXTRA_VID_PID_COUNT+1] =
{
{ USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
};
at line 230 in ti_usb_3410_5052.c and
static struct usb_device_id ti_id_table_combined[] = { ... }
at line 241 in the same file. Afterwards you have to recompile the module.
Regards,
Hermann