From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756003AbcFGRbD (ORCPT ); Tue, 7 Jun 2016 13:31:03 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:36744 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755837AbcFGRbB (ORCPT ); Tue, 7 Jun 2016 13:31:01 -0400 Date: Tue, 7 Jun 2016 10:30:58 -0700 From: Greg KH To: Anchal Jain Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] staging: lustre: lustre: obdclass: Modify return statement Message-ID: <20160607173058.GB25514@kroah.com> References: <20160607170349.GA4344@life-desktop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160607170349.GA4344@life-desktop> User-Agent: Mutt/1.6.1 (2016-04-27) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 07, 2016 at 10:34:01PM +0530, Anchal Jain wrote: > Modify the return statement. > The Coccinelle semantic patch used to make this change is as follows: > > @@ > expression e, ret; > @@ > > -ret = > +return > e; > -return ret; > > Delete the declaration of the return variable rc, as it is no longer used. > > > Signed-off-by: Anchal Jain > --- > changes in v2 > --add public cc with patch Please use scripts/get_maintainer.pl to determine who and what lists to send patches to (hint, lkml is almost never the correct list to _only_ send patches to.)