From patchwork Tue Dec 14 19:16:16 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jean-Francois Moine X-Patchwork-Id: 5052 Return-path: Envelope-to: mchehab@gaivota Delivery-date: Tue, 14 Dec 2010 17:16:14 -0200 Received: from mchehab by gaivota with local (Exim 4.72) (envelope-from ) id 1PSaM9-0007DI-Pk for mchehab@gaivota; Tue, 14 Dec 2010 17:16:14 -0200 Received: from casper.infradead.org [85.118.1.10] by gaivota with IMAP (fetchmail-6.3.17) for (single-drop); Tue, 14 Dec 2010 17:16:13 -0200 (BRST) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1PSaKa-0006XR-Ol; Tue, 14 Dec 2010 19:14:37 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759511Ab0LNTOP (ORCPT + 1 other); Tue, 14 Dec 2010 14:14:15 -0500 Received: from smtp5-g21.free.fr ([212.27.42.5]:49558 "EHLO smtp5-g21.free.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757120Ab0LNTOO convert rfc822-to-8bit (ORCPT ); Tue, 14 Dec 2010 14:14:14 -0500 Received: from tele (unknown [82.245.201.222]) by smtp5-g21.free.fr (Postfix) with ESMTP id 987BED4837B; Tue, 14 Dec 2010 20:14:08 +0100 (CET) Date: Tue, 14 Dec 2010 20:16:16 +0100 From: =?UTF-8?B?SmVhbi1GcmFuw6dvaXM=?= Moine To: Linux Media Mailing List , Mauro Carvalho Chehab Subject: [PATCH 4/6] gspca - sonixj: Set the flag for some devices Message-ID: <20101214201616.2089b408@tele> X-Mailer: Claws Mail 3.7.8 (GTK+ 2.20.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: Mauro Carvalho Chehab The flag PDN_INV indicates that the sensor pin S_PWR_DN has not the same value as other webcams with the same sensor. For now, only two webcams have been so detected: the Microsoft's VX1000 and VX3000. Signed-off-by: Jean-François Moine diff --git a/drivers/media/video/gspca/sonixj.c b/drivers/media/video/gspca/sonixj.c index ed7349b..5deff24 100644 --- a/drivers/media/video/gspca/sonixj.c +++ b/drivers/media/video/gspca/sonixj.c @@ -97,6 +97,9 @@ enum sensors { SENSOR_SP80708, }; +/* device flags */ +#define PDN_INV 1 /* inverse pin S_PWR_DN / sn_xxx tables */ + /* V4L2 controls supported by the driver */ static void setbrightness(struct gspca_dev *gspca_dev); static void setcontrast(struct gspca_dev *gspca_dev); @@ -2959,8 +2962,8 @@ static const __devinitdata struct usb_device_id device_table[] = { {USB_DEVICE(0x0458, 0x7025), BS(SN9C120, MI0360)}, {USB_DEVICE(0x0458, 0x702e), BS(SN9C120, OV7660)}, #endif - {USB_DEVICE(0x045e, 0x00f5), BS(SN9C105, OV7660)}, - {USB_DEVICE(0x045e, 0x00f7), BS(SN9C105, OV7660)}, + {USB_DEVICE(0x045e, 0x00f5), BSF(SN9C105, OV7660, PDN_INV)}, + {USB_DEVICE(0x045e, 0x00f7), BSF(SN9C105, OV7660, PDN_INV)}, {USB_DEVICE(0x0471, 0x0327), BS(SN9C105, MI0360)}, {USB_DEVICE(0x0471, 0x0328), BS(SN9C105, MI0360)}, {USB_DEVICE(0x0471, 0x0330), BS(SN9C105, MI0360)},