Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756129AbaJYBDi (ORCPT ); Fri, 24 Oct 2014 21:03:38 -0400 Received: from mail-wi0-f175.google.com ([209.85.212.175]:60403 "EHLO mail-wi0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755341AbaJYBDN (ORCPT ); Fri, 24 Oct 2014 21:03:13 -0400 From: Mariusz Gorski To: Oleg Drokin , Andreas Dilger , Greg Kroah-Hartman , Peng Tao , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] staging: lustre: Reduce function visibility Date: Sat, 25 Oct 2014 03:00:33 +0200 Message-Id: <1414198834-19470-2-git-send-email-marius.gorski@gmail.com> X-Mailer: git-send-email 2.1.2 In-Reply-To: <1414198834-19470-1-git-send-email-marius.gorski@gmail.com> References: <1414198834-19470-1-git-send-email-marius.gorski@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch fixes the following sparse warnings: drivers/staging/lustre/lnet/lnet/module.c:47:1: warning: symbol 'lnet_configure' was not declared. Should it be static? drivers/staging/lustre/lnet/lnet/module.c:67:1: warning: symbol 'lnet_unconfigure' was not declared. Should it be static? drivers/staging/lustre/lnet/lnet/module.c:87:1: warning: symbol 'lnet_ioctl' was not declared. Should it be static? drivers/staging/lustre/lnet/lnet/module.c:114:1: warning: symbol 'init_lnet' was not declared. Should it be static? drivers/staging/lustre/lnet/lnet/module.c:139:1: warning: symbol 'fini_lnet' was not declared. Should it be static? --- drivers/staging/lustre/lnet/lnet/module.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/lustre/lnet/lnet/module.c b/drivers/staging/lustre/lnet/lnet/module.c index e84d59d..dc09b43 100644 --- a/drivers/staging/lustre/lnet/lnet/module.c +++ b/drivers/staging/lustre/lnet/lnet/module.c @@ -43,7 +43,7 @@ MODULE_PARM_DESC(config_on_load, "configure network at module load"); static struct mutex lnet_config_mutex; -int +static int lnet_configure(void *arg) { /* 'arg' only there so I can be passed to cfs_create_thread() */ @@ -63,7 +63,7 @@ lnet_configure(void *arg) return rc; } -int +static int lnet_unconfigure(void) { int refcount; @@ -83,7 +83,7 @@ lnet_unconfigure(void) return (refcount == 0) ? 0 : -EBUSY; } -int +static int lnet_ioctl(unsigned int cmd, struct libcfs_ioctl_data *data) { int rc; @@ -110,7 +110,7 @@ lnet_ioctl(unsigned int cmd, struct libcfs_ioctl_data *data) DECLARE_IOCTL_HANDLER(lnet_ioctl_handler, lnet_ioctl); -int +static int init_lnet(void) { int rc; @@ -135,7 +135,7 @@ init_lnet(void) return 0; } -void +static void fini_lnet(void) { int rc; -- 2.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/