From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from opensource.wolfsonmicro.com ([80.75.67.52] helo=opensource2.wolfsonmicro.com) by bombadil.infradead.org with esmtps (Exim 4.69 #1 (Red Hat Linux)) id 1OJ4cz-0005FL-Dr for linux-mtd@lists.infradead.org; Mon, 31 May 2010 13:02:02 +0000 Date: Mon, 31 May 2010 14:01:58 +0100 From: Mark Brown To: Wolfram Sang Subject: Re: [PATCH] drivers: remove all i2c_set_clientdata(client, NULL) Message-ID: <20100531130157.GA10507@rakim.wolfsonmicro.main> References: <1275310552-14685-1-git-send-email-w.sang@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1275310552-14685-1-git-send-email-w.sang@pengutronix.de> Cc: Greg Kroah-Hartman , Benjamin Herrenschmidt , linuxppc-dev@ozlabs.org, linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org, devel@driverdev.osuosl.org, Samuel Ortiz , lm-sensors@lm-sensors.org, linux-input@vger.kernel.org, linux-media@vger.kernel.org, Paul Gortmaker , Riku Voipio , rtc-linux@googlegroups.com, Alessandro Rubini , Mauro Carvalho Chehab , Jean Delvare , "Ben Dooks \(embedded platforms\)" , Liam Girdwood , Alessandro Zummo , Guillaume Ligneul , George Joseph , Dmitry Torokhov , linux-kernel@vger.kernel.org, Colin Leroy , David Woodhouse List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , 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 Acked-by: Mark Brown