From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Date: Sat, 15 Jul 2017 20:37:59 +0000 Subject: Re: [PATCH 00/11] Drop unnecessary static Message-Id: <1500151079.4457.80.camel@perches.com> List-Id: References: <1500149266-32357-1-git-send-email-Julia.Lawall@lip6.fr> In-Reply-To: <1500149266-32357-1-git-send-email-Julia.Lawall@lip6.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-arm-kernel@lists.infradead.org On Sat, 2017-07-15 at 22:07 +0200, Julia Lawall wrote: > These patches fix cases where there is a static on a local variable, but > the variable is initialized before any possible use. Thus, the static has > no benefit. Nice one. From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <1500151079.4457.80.camel@perches.com> Subject: Re: [PATCH 00/11] Drop unnecessary static From: Joe Perches To: Julia Lawall , linux-arm-kernel@lists.infradead.org Cc: keescook@chromium.org, kernel-janitors@vger.kernel.org, linux-ide@vger.kernel.org, linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org, Hartmut Knaack , Lars-Peter Clausen , Peter Meerwald-Stadler , linux-input@vger.kernel.org, linux-iio@vger.kernel.org Date: Sat, 15 Jul 2017 13:37:59 -0700 In-Reply-To: <1500149266-32357-1-git-send-email-Julia.Lawall@lip6.fr> References: <1500149266-32357-1-git-send-email-Julia.Lawall@lip6.fr> Content-Type: text/plain; charset="ISO-8859-1" Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: On Sat, 2017-07-15 at 22:07 +0200, Julia Lawall wrote: > These patches fix cases where there is a static on a local variable, but > the variable is initialized before any possible use. Thus, the static has > no benefit. Nice one. From mboxrd@z Thu Jan 1 00:00:00 1970 From: joe@perches.com (Joe Perches) Date: Sat, 15 Jul 2017 13:37:59 -0700 Subject: [PATCH 00/11] Drop unnecessary static In-Reply-To: <1500149266-32357-1-git-send-email-Julia.Lawall@lip6.fr> References: <1500149266-32357-1-git-send-email-Julia.Lawall@lip6.fr> Message-ID: <1500151079.4457.80.camel@perches.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Sat, 2017-07-15 at 22:07 +0200, Julia Lawall wrote: > These patches fix cases where there is a static on a local variable, but > the variable is initialized before any possible use. Thus, the static has > no benefit. Nice one.