From patchwork Fri Feb 24 17:23:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sander Eikelenboom X-Patchwork-Id: 10055 Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from ) id 1S0zOv-00060s-FV for patchwork@linuxtv.org; Fri, 24 Feb 2012 18:57:49 +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-2) with esmtp for id 1S0zOu-0005X0-IP; Fri, 24 Feb 2012 18:57:49 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755627Ab2BXR5m (ORCPT ); Fri, 24 Feb 2012 12:57:42 -0500 Received: from isp-bos-01.edutel.nl ([88.159.1.182]:46968 "EHLO isp-bos-01.edutel.nl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753677Ab2BXR5l (ORCPT ); Fri, 24 Feb 2012 12:57:41 -0500 Received: from isp-aos-01.edutel.intern (unknown [10.115.3.110]) by isp-bos-01.edutel.nl (Postfix) with ESMTP id 1DBE62BC6DA; Fri, 24 Feb 2012 18:57:38 +0100 (CET) Received: from localhost (localhost.localdomain [127.0.0.1]) by isp-aos-01.edutel.intern (Postfix) with ESMTP id 11BD33DC244; Fri, 24 Feb 2012 18:57:38 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at isp-aos-01.edutel.intern Received: from isp-aos-01.edutel.intern ([127.0.0.1]) by localhost (isp-aos-01.edutel.intern [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IDfMXlTJUEkp; Fri, 24 Feb 2012 18:57:24 +0100 (CET) Received: from mail.home.eikelenboom.it (31-75-ftth.onsneteindhoven.nl [88.159.75.31]) by isp-aos-01.edutel.intern (Postfix) with ESMTPSA id 1987E3DC267; Fri, 24 Feb 2012 18:57:19 +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 1S0yrh-0000ZF-6G; Fri, 24 Feb 2012 18:23:29 +0100 Received: (nullmailer pid 2227 invoked by uid 0); Fri, 24 Feb 2012 17:23:29 -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, Sander Eikelenboom Subject: [PATCH] media/cx25821: Add a card definition for "No brand" cards that have: subvendor = 0x0000 subdevice = 0x0000 Date: Fri, 24 Feb 2012 18:23:10 +0100 Message-Id: <1330104190-1220-2-git-send-email-linux@eikelenboom.it> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1330104190-1220-1-git-send-email-linux@eikelenboom.it> References: <1330104190-1220-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.174515 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: Sander Eikelenboom Signed-off-by: Sander Eikelenboom --- drivers/media/video/cx25821/cx25821-core.c | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/cx25821/cx25821-core.c b/drivers/media/video/cx25821/cx25821-core.c index f617474..f51f790 100644 --- a/drivers/media/video/cx25821/cx25821-core.c +++ b/drivers/media/video/cx25821/cx25821-core.c @@ -1472,8 +1472,13 @@ static DEFINE_PCI_DEVICE_TABLE(cx25821_pci_tbl) = { /* CX25821 Athena */ .vendor = 0x14f1, .device = 0x8210, - .subvendor = 0x14f1, - .subdevice = 0x0920, + }, + { + /* CX25821 No Brand */ + .vendor = 0x14f1, + .device = 0x8210, + .subvendor = 0x0000, + .subdevice = 0x0000, }, { /* --- end of list --- */