From patchwork Mon Jun 14 20:21:37 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?TsOpbWV0aCBNw6FydG9u?= X-Patchwork-Id: 3655 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Mon, 14 Jun 2010 20:53:09 +0000 Received: from bombadil.infradead.org [18.85.46.34] by localhost with IMAP (fetchmail-6.3.17) for (single-drop); Tue, 15 Jun 2010 07:59:50 +0300 (EEST) Received: from vger.kernel.org ([209.132.180.67]) by bombadil.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1OOGeb-0000zf-19; Mon, 14 Jun 2010 20:53:09 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755714Ab0FNUxH (ORCPT + 1 other); Mon, 14 Jun 2010 16:53:07 -0400 Received: from relay03.digicable.hu ([92.249.128.185]:60015 "EHLO relay03.digicable.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754756Ab0FNUxG (ORCPT ); Mon, 14 Jun 2010 16:53:06 -0400 X-Greylist: delayed 1885 seconds by postgrey-1.27 at vger.kernel.org; Mon, 14 Jun 2010 16:53:06 EDT Received: from [94.21.98.167] by relay03.digicable.hu with esmtpa id 1OOGA6-00039G-5Z ; Mon, 14 Jun 2010 22:21:38 +0200 Message-ID: <4C168F51.90708@freemail.hu> Date: Mon, 14 Jun 2010 22:21:37 +0200 From: =?UTF-8?B?TsOpbWV0aCBNw6FydG9u?= User-Agent: Mozilla/5.0 (X11; U; Linux i686; hu-HU; rv:1.8.1.21) Gecko/20090402 SeaMonkey/1.1.16 MIME-Version: 1.0 To: Jean-Francois Moine CC: Krivchikov Sergei , V4L Mailing List Subject: [PATCH] gspca_pac7302: add Genius iSlim 310 References: <68c794d61003301249u138e643am20bb264375c3dfe1@mail.gmail.com> <4BB2E42B.4090302@freemail.hu> <4C164387.1000608@freemail.hu> <20100614193003.00988b97@tele> In-Reply-To: <20100614193003.00988b97@tele> X-Original: 94.21.98.167 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Márton Németh Add Genius iSlim 310 webcam to the supported list of the PAC7302 driver. For more information see http://linuxtv.org/wiki/index.php/PixArt_PAC7301/PAC7302 . Signed-off-by: Márton Németh --- -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/Documentation/video4linux/gspca.txt b/Documentation/video4linux/gspca.txt index f13eb03..f9b9d32 100644 --- a/Documentation/video4linux/gspca.txt +++ b/Documentation/video4linux/gspca.txt @@ -253,6 +253,7 @@ pac7302 093a:2620 Apollo AC-905 pac7302 093a:2621 PAC731x pac7302 093a:2622 Genius Eye 312 pac7302 093a:2624 PAC7302 +pac7302 093a:2625 Genius iSlim 310 pac7302 093a:2626 Labtec 2200 pac7302 093a:2628 Genius iLook 300 pac7302 093a:2629 Genious iSlim 300 diff --git a/drivers/media/video/gspca/pac7302.c b/drivers/media/video/gspca/pac7302.c index 2a68220..7c0f265 100644 --- a/drivers/media/video/gspca/pac7302.c +++ b/drivers/media/video/gspca/pac7302.c @@ -1200,6 +1200,7 @@ static const struct usb_device_id device_table[] __devinitconst = { {USB_DEVICE(0x093a, 0x2621)}, {USB_DEVICE(0x093a, 0x2622), .driver_info = FL_VFLIP}, {USB_DEVICE(0x093a, 0x2624), .driver_info = FL_VFLIP}, + {USB_DEVICE(0x093a, 0x2625)}, {USB_DEVICE(0x093a, 0x2626)}, {USB_DEVICE(0x093a, 0x2628)}, {USB_DEVICE(0x093a, 0x2629), .driver_info = FL_VFLIP},