On 09/30/2010 12:18 AM, Yann E. MORIN wrote:
The AVerTV Red HD+ (A850T) is basically the same as the existing AVerTV Volar Black HD 9A850), but is specific to the french market. This is a collection of information gathered from the french support forums for Ubuntu, which I tried to properly format: http://forum.ubuntu-fr.org/viewtopic.php?pid=3322825
/* AverMedia AVerTV Volar Black HD (A850) device have bad EEPROM - content :-( Override some wrong values here. */ + content :-( Override some wrong values here. Ditto for the + AVerTV Red HD+ (A850T) device. */ if (le16_to_cpu(udev->descriptor.idVendor) == USB_VID_AVERMEDIA&& - le16_to_cpu(udev->descriptor.idProduct) == USB_PID_AVERMEDIA_A850) { + ((le16_to_cpu(udev->descriptor.idProduct) == USB_PID_AVERMEDIA_A850) || + (le16_to_cpu(udev->descriptor.idProduct) == USB_PID_AVERMEDIA_A850T))) { deb_info("%s: AverMedia A850: overriding config\n", __func__); /* disable dual mode */ af9015_config.dual_mode = 0;
Are you sure it does also have such bad eeprom content? Is that really needed? What it happens without this hack?
.name = "AverMedia AVerTV Volar Black HD " \ - "(A850)", - .cold_ids = {&af9015_usb_table[20], NULL}, + "(A850) / AVerTV Volar Red HD+ (A850T)", + .cold_ids = {&af9015_usb_table[20], + &af9015_usb_table[33], NULL},
Add new entry for that device (and leave A850 as untouched). Antti -- http://palosaari.fi/ -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html