View | Details | Raw Unified | Return to bug 460962
Collapse All | Expand All

(-)gspcav1-20071224/gspca_core.c (+13 lines)
Lines 422-427 Link Here
422
	Lenovo,
422
	Lenovo,
423
	LogitechQC4Notebooks,
423
	LogitechQC4Notebooks,
424
	PhilipsSPC220NC,
424
	PhilipsSPC220NC,
425
	LogitechQuickCamE2500,
425
	LastCamera
426
	LastCamera
426
};
427
};
427
static struct cam_list clist[] = {
428
static struct cam_list clist[] = {
Lines 620-625 Link Here
620
	{Lenovo,"lenovo MI1310_SOC"},
621
	{Lenovo,"lenovo MI1310_SOC"},
621
	{LogitechQC4Notebooks,"Logitech QuickCam for Notebooks"},
622
	{LogitechQC4Notebooks,"Logitech QuickCam for Notebooks"},
622
	{PhilipsSPC220NC,"Philips SPC220NC PAC207"},
623
	{PhilipsSPC220NC,"Philips SPC220NC PAC207"},
624
	{LogitechQuickCamE2500,"Logitech QuickCam E2500"},
623
	{-1, NULL}
625
	{-1, NULL}
624
};
626
};
625
static __devinitdata struct usb_device_id device_table[] = {
627
static __devinitdata struct usb_device_id device_table[] = {
Lines 834-839 Link Here
834
	{USB_DEVICE(0x046d, 0x08af)},	/* Logitech QuickCam Cool */
836
	{USB_DEVICE(0x046d, 0x08af)},	/* Logitech QuickCam Cool */
835
	{USB_DEVICE(0x093a, 0x2472)},	/* PAC207 Genius VideoCam ge110 */
837
	{USB_DEVICE(0x093a, 0x2472)},	/* PAC207 Genius VideoCam ge110 */
836
	{USB_DEVICE(0x093a, 0x2463)},	/* Philips spc200nc pac207 */
838
	{USB_DEVICE(0x093a, 0x2463)},	/* Philips spc200nc pac207 */
839
	{USB_DEVICE(0x046d, 0x089d)},	/* Logitech QuickCam E2500 */
837
	{USB_DEVICE(0x0000, 0x0000)},	/* MystFromOri Unknow Camera */
840
	{USB_DEVICE(0x0000, 0x0000)},	/* MystFromOri Unknow Camera */
838
	{}			/* Terminating entry */
841
	{}			/* Terminating entry */
839
};
842
};
Lines 3334-3339 Link Here
3334
		};
3337
		};
3335
		break;
3338
		break;
3336
	case 0x046d:		/* Logitech Labtec */
3339
	case 0x046d:		/* Logitech Labtec */
3340
		switch (product) {
3341
		case 0x089d:
3342
			spca50x->desc = LogitechQuickCamE2500;
3343
			spca50x->bridge = BRIDGE_ZC3XX;
3344
			spca50x->sensor = SENSOR_MC501CB;
3345
			break;
3346
		default:
3347
			goto error;
3348
		};
3349
		break;
3337
	case 0x041E:		/* Creative cameras */
3350
	case 0x041E:		/* Creative cameras */
3338
		switch (product) {
3351
		switch (product) {
3339
		case 0x400A:
3352
		case 0x400A:

Return to bug 460962