Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753855Ab3EPMtu (ORCPT ); Thu, 16 May 2013 08:49:50 -0400 Received: from perceval.ideasonboard.com ([95.142.166.194]:48090 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753771Ab3EPMtr (ORCPT ); Thu, 16 May 2013 08:49:47 -0400 From: Laurent Pinchart To: Prabhakar Lad Cc: LMML , LKML , DLOS , Hans Verkuil , Mauro Carvalho Chehab , Guennadi Liakhovetski , Sylwester Nawrocki , Sakari Ailus , Grant Likely , Rob Herring , Rob Landley , devicetree-discuss@lists.ozlabs.org, linux-doc@vger.kernel.org Subject: Re: [PATCH v3] media: i2c: tvp514x: add OF support Date: Thu, 16 May 2013 14:50:06 +0200 Message-ID: <2750806.COjXX3GeT0@avalon> User-Agent: KMail/4.10.2 (Linux/3.7.10-gentoo-r1; KDE/4.10.2; x86_64; ; ) In-Reply-To: References: <1368529236-18199-1-git-send-email-prabhakar.csengg@gmail.com> <11504129.E8jKKy4N2e@avalon> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1700 Lines: 59 Hi Prabhakar, On Thursday 16 May 2013 18:13:38 Prabhakar Lad wrote: > On Thu, May 16, 2013 at 5:40 PM, Laurent Pinchart wrote: > > Hi Prabhakar, > > [Snip] > > >> + > >> + pdata = devm_kzalloc(&client->dev, sizeof(*pdata), GFP_KERNEL); > >> + if (!pdata) > > > > I've started playing with the V4L2 OF bindings, and realized that should > > should call of_node_put() here. > > you were referring of_node_get() here rite ? No, I'm referring to of_node_put(). The v4l2_of_get_next_endpoint() function mentions * Return: An 'endpoint' node pointer with refcount incremented. Refcount * of the passed @prev node is not decremented, the caller have to use * of_node_put() on it when done. > of_node_get/put() got recently added I guess coz of which I missed it :) > > >> + return NULL; > >> + > >> + v4l2_of_parse_endpoint(endpoint, &bus_cfg); > >> + flags = bus_cfg.bus.parallel.flags; > >> + > >> + if (flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) > >> + pdata->hs_polarity = 1; > >> + > >> + if (flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH) > >> + pdata->vs_polarity = 1; > >> + > >> + if (flags & V4L2_MBUS_PCLK_SAMPLE_RISING) > >> + pdata->clk_polarity = 1; > >> + > > > > As well as here. Maybe a > > > > done: > > of_node_put(endpoint); > > return pdata; > > > > with a goto done in the devm_kzalloc error path would be better. -- Regards, Laurent Pinchart -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/