From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752346Ab0FAFF4 (ORCPT ); Tue, 1 Jun 2010 01:05:56 -0400 Received: from mail-px0-f174.google.com ([209.85.212.174]:52003 "EHLO mail-px0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752063Ab0FAFFs (ORCPT ); Tue, 1 Jun 2010 01:05:48 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=Tb5JVjp1Zwysf0LemvnwEczB4nXF9HweUucY9a20va5hBGVQavW4UTjE/f2bnuovrS 4aFi4inRb9lc4Gpz1tNSnyrPizZh98bMHeJrD+XdHRl/ZJNb1WIy8h3rWc31t9nJCPHj XVEn4RKwih0f3E1Ec3QaUD2aj4AKsDxmlelk8= Date: Mon, 31 May 2010 22:05:39 -0700 From: Dmitry Torokhov To: Richard Purdie Cc: Wolfram Sang , linux-i2c@vger.kernel.org, Jean Delvare , George Joseph , Riku Voipio , Guillaume Ligneul , "Ben Dooks (embedded platforms)" , Alessandro Rubini , Colin Leroy , Benjamin Herrenschmidt , Mauro Carvalho Chehab , Samuel Ortiz , Mark Brown , David Woodhouse , Liam Girdwood , Paul Gortmaker , Alessandro Zummo , Greg Kroah-Hartman , lm-sensors@lm-sensors.org, linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, linuxppc-dev@ozlabs.org, linux-media@vger.kernel.org, linux-mtd@lists.infradead.org, rtc-linux@googlegroups.com, devel@driverdev.osuosl.org Subject: Re: [PATCH] drivers: remove all i2c_set_clientdata(client, NULL) Message-ID: <20100601050538.GA7391@core.coreip.homeip.net> References: <1275310552-14685-1-git-send-email-w.sang@pengutronix.de> <20100531190911.GC30712@core.coreip.homeip.net> <1275342512.24079.1559.camel@rex> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1275342512.24079.1559.camel@rex> User-Agent: Mutt/1.5.20 (2009-12-10) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 31, 2010 at 10:48:32PM +0100, Richard Purdie wrote: > On Mon, 2010-05-31 at 12:09 -0700, Dmitry Torokhov wrote: > > On Mon, May 31, 2010 at 02:55:48PM +0200, Wolfram Sang wrote: > > > I2C-drivers can use the clientdata-pointer to point to private data. As I2C > > > devices are not really unregistered, but merely detached from their driver, it > > > used to be the drivers obligation to clear this pointer during remove() or a > > > failed probe(). As a couple of drivers forgot to do this, it was agreed that it > > > was cleaner if the i2c-core does this clearance when appropriate, as there is > > > no guarantee for the lifetime of the clientdata-pointer after remove() anyhow. > > > This feature was added to the core with commit > > > e4a7b9b04de15f6b63da5ccdd373ffa3057a3681 to fix the faulty drivers. > > > > > > As there is no need anymore to clear the clientdata-pointer, remove all current > > > occurrences in the drivers to simplify the code and prevent confusion. > > > > > > Signed-off-by: Wolfram Sang > > > Cc: Jean Delvare > > > --- > > > > > > Some more notes: > > > > > > I waited for rc1 as I knew there were some drivers/patches coming along which > > > needed to be processed, too. > > > > > > I'd suggest that this goes via the i2c-tree, so we get rid of all occurences at > > > once. > > > > > > > Frankly I'd prefer taking input stuff through my tree with the goal of > > .36 merge window just to minimize potential merge issues. This is a > > simple cleanup patch that has no dependencies, so there is little gain > > from doing it all in one go. > > How about asking Linus to take this one now, then its done and we can > all move on rather than queuing up problems for the next merge window? > That should work. Acked-by: Dmitry Torokhov > Acked-by: Richard Purdie > -- Dmitry