Index: vidcap.c =================================================================== RCS file: /cvs/ccc/vidcap/vidcap.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- vidcap.c 1999/10/28 16:07:30 1.5 +++ vidcap.c 1999/12/22 16:27:09 1.6 @@ -25,7 +25,7 @@ * Copyright Corel Comptuer Corp (c) 1997-1998 * * Video Capture driver for the Philips SAA7111 interfacing via reg 3CF/B6 - * of the CyberPro2000 using the I2C interface. + * of the CyberPro2000/2010 using the I2C interface. * The IGS SDK for video capture has been used to develop this device driver. * http://www.igst.com * @@ -218,9 +218,13 @@ dev = pci_find_device (PCI_VENDOR_ID_INTERG, 0x2000, NULL); if (!dev) { - printk (KERN_ERR - "vidcap.o: could not find an IGS CyberPro 2000 device\n"); - return 0; + dev = pci_find_device (PCI_VENDOR_ID_INTERG, 0x2010, NULL); + if (!dev) + { + printk (KERN_ERR + "vidcap.o: could not find an IGS CyberPro 2000 or 2010 device\n"); + return 0; + } } pVGA = bus_to_virt (dev->base_address[0]);