I have a custom device which communicates via USB. It has a TI
TUSB3410 but with a different VID and PID (i.e. not the default Texas
Instruments ones). I know there is already a USB-to-serial driver in
the kernel for this chip which would do all I need but is it possible
to tell the kernel to associate this driver with our device? I would
then need it to run a hotplug script to set up the link to a user-
space application.
I think this would be an easy question for someone but I just can't
find a site with the appropriate information,
Thanks in advance
peter
> I have a custom device which communicates via USB. It has a TI
> TUSB3410 but with a different VID and PID (i.e. not the default Texas
> Instruments ones). I know there is already a USB-to-serial driver in
> the kernel for this chip which would do all I need but is it possible
> to tell the kernel to associate this driver with our device? I would
> then need it to run a hotplug script to set up the link to a user-
> space application.
>
> I think this would be an easy question for someone but I just can't
> find a site with the appropriate information,
Someone will have a better answer for you, but -
One thing that I've sometimes successfully done is look in the source
code for the device driver and found a list of device IDs it looks for
and added the extra device to that list, or substituted it for one of
the others I didn't care about, then recompiled and used that version.
Mark
Pete
On May 21, 4:31 pm, "Mark T.B. Carroll" <Mark.Carr...@Aetion.com>
wrote: