From patchwork Fri Feb 24 18:49:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sander Eikelenboom X-Patchwork-Id: 10056 Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from ) id 1S10Ij-0007Op-V5 for patchwork@linuxtv.org; Fri, 24 Feb 2012 19:55:29 +0100 X-tubIT-Incoming-IP: 209.132.180.67 Received: from vger.kernel.org ([209.132.180.67]) by mail.tu-berlin.de (exim-4.75/mailfrontend-4) with esmtp for id 1S10Ij-0003Kq-AG; Fri, 24 Feb 2012 19:55:29 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756036Ab2BXSz1 (ORCPT ); Fri, 24 Feb 2012 13:55:27 -0500 Received: from isp-bos-02.edutel.nl ([88.159.1.183]:54349 "EHLO isp-bos-01.edutel.nl" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755690Ab2BXSz1 (ORCPT ); Fri, 24 Feb 2012 13:55:27 -0500 Received: from isp-aos-02.edutel.intern (unknown [10.115.3.120]) by isp-bos-01.edutel.nl (Postfix) with ESMTP id 6C9AE2C6696; Fri, 24 Feb 2012 19:55:26 +0100 (CET) Received: from localhost (localhost.localdomain [127.0.0.1]) by isp-aos-02.edutel.intern (Postfix) with ESMTP id 69AB439434B; Fri, 24 Feb 2012 19:55:26 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at isp-aos-02.edutel.intern Received: from isp-aos-02.edutel.intern ([127.0.0.1]) by localhost (isp-aos-02.edutel.intern [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D4LzcnGMPb2D; Fri, 24 Feb 2012 19:55:13 +0100 (CET) Received: from mail.home.eikelenboom.it (200-69-ftth.onsneteindhoven.nl [88.159.69.200]) by isp-aos-02.edutel.intern (Postfix) with ESMTPSA id 257EB394312; Fri, 24 Feb 2012 19:55:13 +0100 (CET) Received: from [192.168.1.1] (helo=serveerstertje.dyndns.org) by mail.home.eikelenboom.it with esmtpa (Exim 4.72) (envelope-from ) id 1S10ET-0000XH-Ke; Fri, 24 Feb 2012 19:51:05 +0100 Received: (nullmailer pid 17508 invoked by uid 0); Fri, 24 Feb 2012 18:49:45 -0000 From: linux@eikelenboom.it To: linux-media@vger.kernel.org Cc: shu.lin@conexant.com, hiep.huynh@conexant.com, stoth@linuxtv.org, hans.verkuil@cisco.com, mchehab@infradead.org, S Eikelenboom Subject: [PATCH] cx25821: Add a card definition for "No brand" cards that have: subvendor = 0x0000 subdevice = 0x0000 Date: Fri, 24 Feb 2012 19:49:42 +0100 Message-Id: <1330109382-16505-2-git-send-email-linux@eikelenboom.it> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1330109382-16505-1-git-send-email-linux@eikelenboom.it> References: <1330109382-16505-1-git-send-email-linux@eikelenboom.it> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-PMX-Version: 5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2012.2.24.184515 X-PMX-Spam: Gauge=IIIIIIII, Probability=8%, Report=' MULTIPLE_RCPTS 0.1, HTML_00_01 0.05, HTML_00_10 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_1000_1099 0, BODY_SIZE_2000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, ECARD_WORD 0, NO_REAL_NAME 0, RATWARE_LC_DIGITS_HELO 0, __ANY_URI 0, __CP_MEDIA_BODY 0, __CP_URI_IN_BODY 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __HAS_X_MAILING_LIST 0, __MIME_TEXT_ONLY 0, __MULTIPLE_RCPTS_CC_X2 0, __SANE_MSGID 0, __SUBJ_ALPHA_END 0, __TO_MALFORMED_2 0, __TO_NO_NAME 0, __URI_NO_WWW 0, __URI_NS ' From: S Eikelenboom Signed-off-by: Sander Eikelenboom --- drivers/media/video/cx25821/cx25821-core.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/cx25821/cx25821-core.c b/drivers/media/video/cx25821/cx25821-core.c index f617474..a69ea04 100644 --- a/drivers/media/video/cx25821/cx25821-core.c +++ b/drivers/media/video/cx25821/cx25821-core.c @@ -1475,6 +1475,13 @@ static DEFINE_PCI_DEVICE_TABLE(cx25821_pci_tbl) = { .subvendor = 0x14f1, .subdevice = 0x0920, }, + { + /* CX25821 No Brand */ + .vendor = 0x14f1, + .device = 0x8210, + .subvendor = 0x0000, + .subdevice = 0x0000, + }, { /* --- end of list --- */ }