Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751367AbdGRHXQ (ORCPT ); Tue, 18 Jul 2017 03:23:16 -0400 Received: from mail-wr0-f170.google.com ([209.85.128.170]:35274 "EHLO mail-wr0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751189AbdGRHXO (ORCPT ); Tue, 18 Jul 2017 03:23:14 -0400 Date: Tue, 18 Jul 2017 08:23:11 +0100 From: Lee Jones To: Julia Lawall Cc: keescook@chromium.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 11/11] mfd: max8925-i2c: Drop unnecessary static Message-ID: <20170718072311.p4ccoamacxcolc23@dell> References: <1500149266-32357-1-git-send-email-Julia.Lawall@lip6.fr> <1500149266-32357-12-git-send-email-Julia.Lawall@lip6.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1500149266-32357-12-git-send-email-Julia.Lawall@lip6.fr> User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1387 Lines: 60 On Sat, 15 Jul 2017, Julia Lawall wrote: > Drop static on a local variable, when the variable is initialized before > any possible use. Thus, the static has no benefit. > > The semantic patch that fixes this problem is as follows: > (http://coccinelle.lip6.fr/) > > // > @bad exists@ > position p; > identifier x; > type T; > @@ > static T x@p; > ... > x = <+...x...+> > > @@ > identifier x; > expression e; > type T; > position p != bad.p; > @@ > -static > T x@p; > ... when != x > when strict > ?x = e; > // > > Signed-off-by: Julia Lawall > > --- > These patches are all independent of each other. > > drivers/mfd/max8925-i2c.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks. > diff -u -p a/drivers/mfd/max8925-i2c.c b/drivers/mfd/max8925-i2c.c > --- a/drivers/mfd/max8925-i2c.c > +++ b/drivers/mfd/max8925-i2c.c > @@ -151,7 +151,7 @@ static int max8925_probe(struct i2c_clie > const struct i2c_device_id *id) > { > struct max8925_platform_data *pdata = dev_get_platdata(&client->dev); > - static struct max8925_chip *chip; > + struct max8925_chip *chip; > struct device_node *node = client->dev.of_node; > > if (node && !pdata) { > -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog