Change Intel Internal Modem to X100P
I found from this link.
just modify source code zaptel/wcfxo.c
change from
static struct pci_device_id wcfxo_pci_tbl[] __devinitdata = {
{ 0xe159, 0×0001, 0×8085, PCI_ANY_ID, 0, 0, (unsigned long) &wcx101p },
{ 0×1057, 0×5608, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long) &wcx100$ };
to
static struct pci_device_id wcfxo_pci_tbl[] __devinitdata = {
{ 0xe159, 0×0001, 0×8085, PCI_ANY_ID, 0, 0, (unsigned long) &wcx101p },
{ 0xe159, 0×0001, 0×8086, PCI_ANY_ID, 0, 0, (unsigned long) &wcx101p },
{ 0×1057, 0×5608, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long) &wcx100$ };
Thank you!


