From patchwork Sun Apr 16 06:51:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Icenowy Zheng X-Patchwork-Id: 9682523 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 9E35760138 for ; Sun, 16 Apr 2017 07:00:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7AEC127BFF for ; Sun, 16 Apr 2017 07:00:17 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5D42C281B7; Sun, 16 Apr 2017 07:00:17 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CBA8727BFF for ; Sun, 16 Apr 2017 07:00:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752729AbdDPHAI (ORCPT ); Sun, 16 Apr 2017 03:00:08 -0400 Received: from hermes.aosc.io ([199.195.250.187]:49374 "EHLO hermes.aosc.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752264AbdDPHAI (ORCPT ); Sun, 16 Apr 2017 03:00:08 -0400 X-Greylist: delayed 493 seconds by postgrey-1.27 at vger.kernel.org; Sun, 16 Apr 2017 03:00:08 EDT Received: from localhost (localhost [127.0.0.1]) (Authenticated sender: icenowy@aosc.io) by hermes.aosc.io (Postfix) with ESMTPSA id 0D51F44C2E; Sun, 16 Apr 2017 06:51:46 +0000 (UTC) From: Icenowy Zheng To: Mauro Carvalho Chehab , Lubomir Rintel Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, Icenowy Zheng Subject: [PATCH RESEND2] [media] usbtv: add a new usbid Date: Sun, 16 Apr 2017 14:51:16 +0800 Message-Id: <20170416065116.61662-1-icenowy@aosc.io> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP A new usbid of UTV007 is found in a newly bought device. The usbid is 1f71:3301. The ID on the chip is: UTV007 A89029.1 1520L18K1 Both video and audio is tested with the modified usbtv driver. Signed-off-by: Icenowy Zheng Acked-by: Lubomir Rintel --- Added Lubomir's ACK in the second time of resend. The old patch may be lost because the old aosc.xyz mail is using Yandex's service -- which is rejected by many mail providers. As part of AOSC mailing system refactor, we got a new mailing system, so that the patch is now resent. drivers/media/usb/usbtv/usbtv-core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/usb/usbtv/usbtv-core.c b/drivers/media/usb/usbtv/usbtv-core.c index ceb953be0770..cae637845876 100644 --- a/drivers/media/usb/usbtv/usbtv-core.c +++ b/drivers/media/usb/usbtv/usbtv-core.c @@ -144,6 +144,7 @@ static void usbtv_disconnect(struct usb_interface *intf) static struct usb_device_id usbtv_id_table[] = { { USB_DEVICE(0x1b71, 0x3002) }, + { USB_DEVICE(0x1f71, 0x3301) }, {} }; MODULE_DEVICE_TABLE(usb, usbtv_id_table);