[19:37] <h0rsep0wer> Actually I want to add support to a web cam to the linux drivers. The camera is an empia 2750, VID/PID eb1a/5052, and the driver is at /media/usb/em28xx [19:37] <h0rsep0wer> In windows, I have installed the drivers and edited the pid 2750, and replaced with 5052, and everything worked correctly(the camera was recognized) [19:38] <h0rsep0wer> so, I confirmed this camera is really an eb1a:2750, but it shows as an eb1a:5052. [19:39] <h0rsep0wer> In linux I've tried to edit the source code and adding this pid line but it's not working, the camera is not being recognized. [19:39] <h0rsep0wer> How I can do that? [19:59] <h0rsep0wer> If someone knows the solution or if linuxtv can add this pid to the supported devices, please do this. I will log out in some minutes, but will check the logs later. [20:21] <mchehab> h0rsep0wer: you should modify the driver and recompile the Kernel [20:22] <mchehab> it shouldn't be hard, if the camera is really identical to eb1a:2750 [20:25] <mchehab> just add this: [20:25] <mchehab> + { USB_DEVICE(0xeb1a, 0x5052), [20:25] <mchehab> + .driver_info = EM2750_BOARD_UNKNOWN }, [20:25] <mchehab> to: [20:25] <mchehab> struct usb_device_id em28xx_id_table[] = { [20:25] <mchehab> you'll need to recompile the Kernel through [20:25] <mchehab> (or use media-build) [20:25] <mchehab> see the wiki pages at linuxtv.org [20:26] <mchehab> if you manage to get it working, please send us a patch to linux-media@vger.kernel.org with the patch [20:26] <mchehab> if it doesn't work, send the results you got