From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.suse.de (cantor.suse.de [195.135.220.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx1.suse.de", Issuer "CAcert Class 3 Root" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id D3F86DE08A for ; Mon, 18 May 2009 03:32:41 +1000 (EST) Date: Sun, 17 May 2009 19:32:36 +0200 Message-ID: From: Takashi Iwai To: Julia Lawall Subject: Re: [PATCH 3/3] sound: use dev_set_drvdata In-Reply-To: References: MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Cc: linuxppc-dev@ozlabs.org, alsa-devel@alsa-project.org, kernel-janitors@vger.kernel.org, timur@freescale.com, linux-kernel@vger.kernel.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , At Sun, 17 May 2009 11:29:21 +0200 (CEST), Julia Lawall wrote: > > From: Julia Lawall > > Eliminate direct accesses to the driver_data field. > cf 82ab13b26f15f49be45f15ccc96bfa0b81dfd015 > > The semantic patch that makes this change is as follows: > (http://www.emn.fr/x-info/coccinelle/) > > // > @@ > struct device *dev; > expression E; > type T; > @@ > > - dev->driver_data = (T)E > + dev_set_drvdata(dev, E) > > @@ > struct device *dev; > type T; > @@ > > - (T)dev->driver_data > + dev_get_drvdata(dev) > // > > Signed-off-by: Julia Lawall Applied now. Thanks. Takashi > > --- > sound/soc/fsl/fsl_ssi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff -u -p a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c > --- a/sound/soc/fsl/fsl_ssi.c > +++ b/sound/soc/fsl/fsl_ssi.c > @@ -674,7 +674,7 @@ struct snd_soc_dai *fsl_ssi_create_dai(s > ssi_private->dev = ssi_info->dev; > ssi_private->asynchronous = ssi_info->asynchronous; > > - ssi_private->dev->driver_data = fsl_ssi_dai; > + dev_set_drvdata(ssi_private->dev, fsl_ssi_dai); > > /* Initialize the the device_attribute structure */ > dev_attr->attr.name = "ssi-stats"; > -- > 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/ >