> How do I enable the enhanced driver on a particular pci function
> WITHOUT disabling the standard driver on the standard ports?
You probably need to modify 8250-pci.c to exclude it if your driver is
in the build. Ie something like
#if defined(CONFIG_MY_FUNKY_SERIAL_PORT) ||
defined(CONFIG_MY_FUNKY_SERIAL_PORT_MODULE)
if (pcidev->vendor == 0x8086 && pcidev->device == ...)
return -ENODEV;
#endif
And submit that change along with the new driver when they are ready.
_______________________________________________
MeeGo-kernel mailing list
[email protected]
http://lists.meego.com/listinfo/meego-kernel