Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755492AbdCTO41 (ORCPT ); Mon, 20 Mar 2017 10:56:27 -0400 Received: from relay1.mentorg.com ([192.94.38.131]:62917 "EHLO relay1.mentorg.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754472AbdCTOz2 (ORCPT ); Mon, 20 Mar 2017 10:55:28 -0400 Subject: Re: [PATCH v10 2/2] media: i2c: Add support for OV5647 sensor. To: Ramiro Oliveira , , , References: <67b5055a198316f74c5c1339e14a9f18a4106e69.1488798062.git.roliveir@synopsys.com> CC: , Andrew Morton , "David S. Miller" , Geert Uytterhoeven , Greg Kroah-Hartman , Guenter Roeck , Hans Verkuil , Mark Rutland , Mauro Carvalho Chehab , =?UTF-8?Q?Pali_Roh=c3=a1r?= , Pavel Machek , Robert Jarzmik , Rob Herring , Sakari Ailus , Steve Longerbeam From: Vladimir Zapolskiy Message-ID: Date: Mon, 20 Mar 2017 16:16:12 +0200 User-Agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Icedove/45.2.0 MIME-Version: 1.0 In-Reply-To: <67b5055a198316f74c5c1339e14a9f18a4106e69.1488798062.git.roliveir@synopsys.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [137.202.0.87] X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1119 Lines: 42 Hi Ramiro, On 03/06/2017 01:16 PM, Ramiro Oliveira wrote: > The OV5647 sensor from Omnivision supports up to 2592x1944 @ 15 fps, RAW 8 > and RAW 10 output formats, and MIPI CSI-2 interface. > > The driver adds support for 640x480 RAW 8. > > Signed-off-by: Ramiro Oliveira All updates are fine, thank you. Feel free to add my Reviewed-by: Vladimir Zapolskiy > --- > MAINTAINERS | 7 + > drivers/media/i2c/Kconfig | 11 + > drivers/media/i2c/Makefile | 1 + > drivers/media/i2c/ov5647.c | 636 +++++++++++++++++++++++++++++++++++++++++++++ I see this version has 100 LoC less in comparison to v8, good result. [snip] > + > +static const struct v4l2_subdev_pad_ops ov5647_subdev_pad_ops = { > + .enum_mbus_code = ov5647_enum_mbus_code, Nitpicking, above it's better to swap tab and space symbols around '='. > +}; > + > +static const struct v4l2_subdev_ops ov5647_subdev_ops = { > + .core = &ov5647_subdev_core_ops, > + .video = &ov5647_subdev_video_ops, > + .pad = &ov5647_subdev_pad_ops, > +}; > + -- With best wishes, Vladimir