From patchwork Sat Jan 17 02:08:47 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyle Guinn X-Patchwork-Id: 2915 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n0H24cJu004349 for ; Fri, 16 Jan 2009 18:04:38 -0800 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753941AbZAQCIy (ORCPT ); Fri, 16 Jan 2009 21:08:54 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755667AbZAQCIy (ORCPT ); Fri, 16 Jan 2009 21:08:54 -0500 Received: from ey-out-2122.google.com ([74.125.78.27]:20438 "EHLO ey-out-2122.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755617AbZAQCIx (ORCPT ); Fri, 16 Jan 2009 21:08:53 -0500 Received: by ey-out-2122.google.com with SMTP id 22so352496eye.37 for ; Fri, 16 Jan 2009 18:08:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:cc:references:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; bh=1rSMrj+ikRHxlFzjuWpuIIyn4ZyRGHUnOLfA4kYokY4=; b=Dgn4SaXb7CMKx3uT6EujWVIF58BBc6hWUs1YHRS6APwYAyhAFNUiUoNno/jaokXlo+ cKLkPelsACov2J0vsXoMLCtq7gEMUlaUA5OytZRvydOIOGHqtvLs97RUnuSvs+vOyBMe zblJrZRcw/hIFRqNWPHZxqO4vPXJn7BHksVhc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:message-id; b=oyrwdlbEKeLIfNJ2FL5ZaxJY3ZWcsbBeWd267TAAthmv/tp6dEfdwhtUK/AX2ZyMKa SkB04nhGDuu+Ua6GLdhjLXDlWz/Wnag0EhLvb4Mk4tO/IAnzmyTDhfHOQq0GzUylZWCf Foh5CUjUXePv8L3TGBBsCp+iskqOqWjundA0U= Received: by 10.210.62.3 with SMTP id k3mr2635780eba.64.1232158131527; Fri, 16 Jan 2009 18:08:51 -0800 (PST) Received: from neptune.elyk.lan (c-69-254-254-50.hsd1.ks.comcast.net [69.254.254.50]) by mx.google.com with ESMTPS id 10sm1059770eyd.36.2009.01.16.18.08.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 16 Jan 2009 18:08:50 -0800 (PST) From: Kyle Guinn To: Jean-Francois Moine Subject: Re: [PATCH 2/2 v2] gspca: Add MR97310A driver Date: Fri, 16 Jan 2009 20:08:47 -0600 User-Agent: KMail/1.9.9 Cc: linux-media@vger.kernel.org, mchehab@infradead.org References: <200901152236.49550.elyk03@gmail.com> <20090116094731.3093d577@free.fr> In-Reply-To: <20090116094731.3093d577@free.fr> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200901162008.47760.elyk03@gmail.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Fix camera initialization copy/paste bugs From: Kyle Guinn Fix a couple of copy and paste bugs in the MR97310A initialization. Priority: normal Signed-off-by: Kyle Guinn --- 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/linux/drivers/media/video/gspca/mr97310a.c b/linux/drivers/media/video/gspca/mr97310a.c --- a/linux/drivers/media/video/gspca/mr97310a.c +++ b/linux/drivers/media/video/gspca/mr97310a.c @@ -247,8 +247,8 @@ data[5] = 0x00; data[6] = 0x70; data[7] = 0x00; - data[8] = 0x01; - err_code = reg_w(gspca_dev, 10); + data[8] = 0x00; + err_code = reg_w(gspca_dev, 9); if (err_code < 0) return err_code;