From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751955AbbIQEZZ (ORCPT ); Thu, 17 Sep 2015 00:25:25 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:39165 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751770AbbIQEZW (ORCPT ); Thu, 17 Sep 2015 00:25:22 -0400 Date: Wed, 16 Sep 2015 21:25:21 -0700 From: Greg KH To: Sakshi Vaid Cc: oleg.drokin@intel.com, andreas.dilger@intel.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed unnecessary space Message-ID: <20150917042521.GA16897@kroah.com> References: <1442408232-6472-1-git-send-email-sakshivaid95@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1442408232-6472-1-git-send-email-sakshivaid95@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Sep 16, 2015 at 06:27:12PM +0530, Sakshi Vaid wrote: > Removed the unnecessary space in the declaration of a pointer. > The following error was given. > ERROR: "foo * bar" should be "foo *bar" > > Signed-off-by: Sakshi Vaid > --- > drivers/staging/lustre/lustre/mgc/mgc_request.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/lustre/lustre/mgc/mgc_request.c b/drivers/staging/lustre/lustre/mgc/mgc_request.c > index 60d2b0f..8d3dbdc 100644 > --- a/drivers/staging/lustre/lustre/mgc/mgc_request.c > +++ b/drivers/staging/lustre/lustre/mgc/mgc_request.c > @@ -160,7 +160,7 @@ struct config_llog_data *config_log_find(char *logname, > { > struct config_llog_data *cld; > struct config_llog_data *found = NULL; > - void * instance; > + void *instance; > > LASSERT(logname != NULL); > This also doesn't apply :(