From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752401Ab3LMI5A (ORCPT ); Fri, 13 Dec 2013 03:57:00 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:38735 "EHLO relay5-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751801Ab3LMI47 convert rfc822-to-8bit (ORCPT ); Fri, 13 Dec 2013 03:56:59 -0500 X-Originating-IP: 50.43.14.201 Date: Fri, 13 Dec 2013 00:56:51 -0800 From: Josh Triplett To: Rashika Kheria Cc: linux-kernel@vger.kernel.org, Robin Holt , Cliff Whickman Subject: Re: [PATCH 2/5] drivers: misc: Mark functions as static in xp_main.c Message-ID: <20131213085651.GB4386@leaf> References: <40521f78bafae3cc4e796c540d3c497d79eeb63e.1386915618.git.rashika.kheria@gmail.com> <49ece621a2dbbdfad71e81c3185d7e8a32c52823.1386915618.git.rashika.kheria@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <49ece621a2dbbdfad71e81c3185d7e8a32c52823.1386915618.git.rashika.kheria@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Dec 13, 2013 at 12:21:20PM +0530, Rashika Kheria wrote: > This patch marks the function xp_init() and xp_exit() as static in > sgi-xp/xp_main.c because they are not used outside this file. > > Thus, it also eliminates the following warnings in sgi-xp/xp_main.c: > drivers/misc/sgi-xp/xp_main.c:249:1: warning: no previous prototype for ‘xp_init’ [-Wmissing-prototypes] > drivers/misc/sgi-xp/xp_main.c:274:1: warning: no previous prototype for ‘xp_exit’ [-Wmissing-prototypes] > > Signed-off-by: Rashika Kheria Reviewed-by: Josh Triplett > drivers/misc/sgi-xp/xp_main.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/misc/sgi-xp/xp_main.c b/drivers/misc/sgi-xp/xp_main.c > index 01be66d..df14c70 100644 > --- a/drivers/misc/sgi-xp/xp_main.c > +++ b/drivers/misc/sgi-xp/xp_main.c > @@ -245,7 +245,7 @@ xpc_disconnect(int ch_number) > } > EXPORT_SYMBOL_GPL(xpc_disconnect); > > -int __init > +static int __init > xp_init(void) > { > enum xp_retval ret; > @@ -270,7 +270,7 @@ xp_init(void) > > module_init(xp_init); > > -void __exit > +static void __exit > xp_exit(void) > { > if (is_shub()) > -- > 1.7.9.5 >